/* =========================================
   RESET & ROOT VARIABLES
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* Renkler — koyu lacivert + altın krem + cam mavisi */
  --navy: #0a2540;
  --navy-deep: #061a2e;
  --navy-light: #1a3a5c;
  --gold: #d4a574;
  --gold-bright: #e8b87a;
  --cream: #faf6f0;
  --cream-dark: #f0e9dd;
  --glass: #7dd3fc;
  --glass-deep: #0ea5e9;
  --wa-green: #25d366;
  --wa-green-dark: #128c7e;

  --ink: #0a1929;
  --ink-soft: #2c3e50;
  --muted: #5a6c7d;
  --line: #e8e4dc;

  --white: #ffffff;
  --bg: #fdfbf7;

  /* Typography */
  --font-display: 'Roboto Slab', Georgia, serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow: 0 8px 32px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 24px 64px rgba(10, 37, 64, 0.12);

  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   TOPBAR
   ========================================= */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-item { white-space: nowrap; }
.topbar-phone {
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.topbar-phone:hover { color: var(--white); }

@media (max-width: 720px) {
  .topbar-inner { font-size: 12px; gap: 8px; justify-content: center; }
  .topbar-item:nth-child(2) { display: none; }
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
}
.logo-text small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color var(--t);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t);
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { transform: scaleX(1); }

.btn-wa-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--t);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.btn-wa-mini:hover {
  background: var(--wa-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .logo-text small { display: none; }
}
@media (max-width: 480px) {
  .btn-wa-mini span { display: none; }
  .btn-wa-mini { padding: 10px 12px; }
  .logo-text strong { font-size: 15px; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-text { animation: fadeInUp 0.8s ease both; }
.hero-badge {
  display: inline-block;
  padding: 7px 14px;
  background: rgba(212, 165, 116, 0.15);
  color: #8a6334;
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
}
.hero-title .hl {
  position: relative;
  white-space: nowrap;
}
.hero-title .hl::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; bottom: 4px;
  height: 12px;
  background: rgba(212, 165, 116, 0.35);
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.trust-item span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.hero-visual {
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-illustration {
  position: relative;
  width: 100%;
  height: auto;
}
.hero-card-meta {
  position: relative;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 60px; }
  .hero-trust { gap: 20px; flex-wrap: wrap; }
  .hero-card { padding: 28px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta a { width: 100%; justify-content: center; }
  .hero-trust { gap: 16px; }
  .trust-item strong { font-size: 1.4rem; }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-primary:hover {
  background: var(--wa-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}
.btn-light {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
}
.btn-large {
  padding: 18px 32px;
  font-size: 16px;
}

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--gold-bright); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-sub { color: rgba(255, 255, 255, 0.75); }

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--t);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 165, 116, 0.3);
}
.service-card.featured {
  background: linear-gradient(180deg, var(--white) 0%, #fff8ed 100%);
  border-color: var(--gold);
}
.card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
.service-card a:hover { border-bottom-color: var(--gold); }

/* =========================================
   WHY US
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.why-item {
  position: relative;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: all var(--t);
}
.why-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 165, 116, 0.4);
  transform: translateY(-2px);
}
.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.why-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.why-item p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* =========================================
   VEHICLES
   ========================================= */
.vehicle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.vehicle-tag {
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all var(--t);
}
.vehicle-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* =========================================
   FAQ
   ========================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
}
.faq-item[open] { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 22px 26px;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
  transition: transform var(--t);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 26px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================
   BLOG TEASER
   ========================================= */
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 16 / 9;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}
.blog-img-1 {
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 165, 116, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(125, 211, 252, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.blog-img-1::before {
  content: '🔧 💸';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-date {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}
.read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.blog-card-cta {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-color: var(--gold);
  border-style: dashed;
  padding: 40px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blog-cta-inner span:first-child { font-size: 3rem; display: block; margin-bottom: 12px; }
.blog-cta-inner h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.blog-cta-inner p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section { padding: 80px 0; }
.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 70px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(37, 211, 102, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content { position: relative; max-width: 720px; margin: 0 auto; }
.cta-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-content h2 em { font-style: normal; font-weight: 400; color: var(--gold-bright); }
.cta-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.cta-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cta-info > div {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 6px;
}
.cta-info strong {
  font-size: 13px;
  color: var(--gold-bright);
  font-weight: 600;
}
.cta-info span { color: rgba(255, 255, 255, 0.85); font-size: 14px; }

@media (max-width: 720px) {
  .cta-card { padding: 50px 24px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons a { width: 100%; }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { margin-top: 20px; line-height: 1.7; max-width: 360px; }
.logo-dark .logo-text strong { color: var(--white); }
.logo-dark .logo-text small { color: rgba(255, 255, 255, 0.6); }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { transition: color var(--t); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-contact a { color: var(--gold-bright); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; }
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  transition: all var(--t);
}
.floating-wa:hover {
  background: var(--wa-green-dark);
  transform: scale(1.05);
}
.floating-wa-pulse {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.6;
  animation: ring 2.4s infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes ring {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

@media (max-width: 480px) {
  .floating-wa-label { display: none; }
  .floating-wa { padding: 14px; bottom: 18px; right: 18px; }
  .floating-wa-pulse { left: 50%; }
}

/* =========================================
   BLOG STYLES
   ========================================= */
.blog-page { background: var(--bg); }
.blog-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.blog-hero-inner { position: relative; }
.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.blog-hero h1 em { font-style: normal; font-weight: 400; color: var(--gold); }
.blog-hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

.blog-list {
  padding: 60px 0 80px;
}
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* Blog post */
.post-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
  padding: 60px 0 40px;
}
.post-hero-inner { max-width: 760px; margin: 0 auto; }
.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.post-meta .post-tag {
  padding: 5px 12px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  font-size: 11px;
}
.post-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.post-lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
}

.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.post-content > * { margin-bottom: 1.4em; }
.post-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-top: 2em;
  margin-bottom: 0.6em;
  line-height: 1.2;
}
.post-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}
.post-content p { color: var(--ink-soft); }
.post-content strong { color: var(--navy); font-weight: 600; }
.post-content ul, .post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}
.post-content ul li, .post-content ol li {
  margin-bottom: 0.5em;
  list-style: disc;
}
.post-content ol li { list-style: decimal; }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: normal;
  color: var(--navy);
  font-size: 1.05em;
  font-weight: 500;
}
.post-content blockquote p:last-child { margin-bottom: 0; }
.post-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.post-content table th,
.post-content table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.post-content table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}
.post-content table tr:last-child td { border-bottom: none; }
.post-content table tr:nth-child(even) td { background: var(--cream); }
.post-content a { color: var(--gold); border-bottom: 1px solid currentColor; }

.post-callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin: 2em 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.post-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.25) 0%, transparent 50%);
}
.post-callout > * { position: relative; }
.post-callout h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 10px;
  margin-top: 0;
}
.post-callout p { color: rgba(255, 255, 255, 0.85); margin-bottom: 20px; }
.post-callout a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  border: none;
  text-decoration: none;
}
.post-callout a:hover { background: var(--wa-green-dark); }
