/* ============================================
   MAPLE MARKETING LLC - GLOBAL STYLES
   Bold & Modern Theme | Black / Red / White
   ============================================ */

:root {
  --color-bg: #0a0a0a;
  --color-bg-elev: #141414;
  --color-bg-card: #1a1a1a;
  --color-red: #c8232c;
  --color-red-light: #e63946;
  --color-red-dark: #8f1a20;
  --color-white: #ffffff;
  --color-gray: #b3b3b3;
  --color-gray-dark: #6b6b6b;
  --color-border: #262626;
  --shadow-red: 0 10px 40px rgba(200, 35, 44, 0.25);
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.5);
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--color-red-light); }

/* ============ CONTAINER ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.15rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-red-light);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-red);
}

.text-red { color: var(--color-red-light); }
.text-gray { color: var(--color-gray); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 48px; width: auto; transition: transform .25s ease; }
.nav-logo:hover img { transform: scale(1.05); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-gray);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-white);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 0;
  width: 100%; height: 2px;
  background: var(--color-red);
}
.nav-cta {
  background: var(--color-red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all .25s ease;
}
.nav-cta:hover {
  background: var(--color-red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
  color: #fff !important;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--color-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--color-red-light);
  transform: translateY(-3px);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  border-color: var(--color-red);
  background: rgba(200, 35, 44, 0.08);
  color: #fff;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,35,44,0.18), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,35,44,0.10), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--color-red-light);
  position: relative;
  display: inline-block;
}
.hero p.lead {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: 40px;
  max-width: 680px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px solid var(--color-border);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-red-light);
  line-height: 1;
}
.hero-stat .lbl {
  color: var(--color-gray);
  font-size: 0.92rem;
  margin-top: 8px;
}

/* ============ SECTION ============ */
section {
  padding: 110px 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 70px;
}
.section-header p {
  color: var(--color-gray);
  font-size: 1.1rem;
  margin-top: 18px;
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,35,44,0.4);
  box-shadow: var(--shadow-red);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(200, 35, 44, 0.12);
  border: 1px solid rgba(200,35,44,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-red-light);
  margin-bottom: 24px;
}
.service-card h3 { margin-bottom: 14px; }
.service-card p { color: var(--color-gray); font-size: 0.98rem; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-weight: 600;
  color: var(--color-red-light);
  font-size: 0.92rem;
}
.service-card .learn-more::after {
  content: "→";
  transition: transform .25s ease;
}
.service-card:hover .learn-more::after { transform: translateX(5px); }

/* ============ FEATURE SECTION (2-col) ============ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.reverse .feature-text { order: 2; }
.feature-text h2 { margin-bottom: 22px; }
.feature-text p { color: var(--color-gray); font-size: 1.08rem; margin-bottom: 18px; }
.feature-list {
  list-style: none;
  margin-top: 28px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-gray);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--color-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}
.feature-visual {
  background: linear-gradient(135deg, rgba(200,35,44,0.15), rgba(200,35,44,0.02));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.feature-visual img { max-height: 280px; margin: 0 auto; }

/* ============ PROCESS / STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.step {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--color-red-light), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 { margin-bottom: 10px; font-size: 1.2rem; }
.step p { color: var(--color-gray); font-size: 0.95rem; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 120%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
}
.cta-band h2 { color: #fff; margin-bottom: 18px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 32px; position: relative; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--color-red-dark);
  position: relative;
}
.cta-band .btn-primary:hover {
  background: #0a0a0a;
  color: #fff;
}

/* ============ FOOTER ============ */
.footer {
  background: #050505;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand img { height: 60px; margin-bottom: 20px; }
.footer-brand p { color: var(--color-gray); font-size: 0.95rem; max-width: 320px; }
.footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 22px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  color: var(--color-gray);
  font-size: 0.95rem;
}
.footer ul a:hover { color: var(--color-red-light); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--color-gray-dark);
  font-size: 0.88rem;
}
.social-icons { display: flex; gap: 14px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--color-gray);
}
.social-icons a:hover {
  border-color: var(--color-red);
  background: var(--color-red);
  color: #fff;
}

/* ============ PAGE HEADER (Sub-page hero) ============ */
.page-hero {
  padding: 180px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(200,35,44,0.15), transparent 70%);
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero p {
  color: var(--color-gray);
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--color-red-light); }
.breadcrumb .sep { color: var(--color-gray-dark); }

/* ============ ABOUT / VALUES ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
}
.value-icon {
  width: 70px; height: 70px;
  background: rgba(200,35,44,0.1);
  border: 1px solid rgba(200,35,44,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-red-light);
  margin: 0 auto 20px;
}
.value-card h4 { margin-bottom: 12px; font-size: 1.2rem; }
.value-card p { color: var(--color-gray); font-size: 0.95rem; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card .icon {
  width: 48px; height: 48px;
  background: rgba(200,35,44,0.1);
  border: 1px solid rgba(200,35,44,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red-light);
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--color-gray); font-size: 0.95rem; }

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.98rem;
  transition: border .25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 10px; }

/* ============ SERVICES PAGE — DETAILED ============ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .sd-visual { order: 2; }
.sd-visual {
  background: linear-gradient(135deg, rgba(200,35,44,0.18), rgba(20,20,20,0.5));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  text-align: center;
  font-size: 5rem;
  color: var(--color-red-light);
  position: relative;
  overflow: hidden;
}
.sd-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(200,35,44,0.2), transparent 60%);
}
.sd-visual i, .sd-visual span { position: relative; z-index: 1; }
.sd-text .eyebrow { margin-bottom: 16px; }
.sd-text h2 { margin-bottom: 18px; }
.sd-text > p { color: var(--color-gray); font-size: 1.05rem; margin-bottom: 22px; }

/* ============ PRICING TIERS (for services) ============ */
.compact-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 20px;
}
.compact-list li {
  color: var(--color-gray);
  font-size: 0.95rem;
  padding-left: 22px;
  position: relative;
}
.compact-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--color-red-light);
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--color-red);
  opacity: 0.18;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,35,44,0.4);
  box-shadow: var(--shadow-red);
}
.testimonial-stars {
  color: #ffc107;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-quote {
  color: #e5e5e5;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.author-info h5 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.author-info span {
  font-size: 0.82rem;
  color: var(--color-gray);
}
.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 12px;
  background: rgba(31, 157, 77, 0.12);
  border: 1px solid rgba(31, 157, 77, 0.3);
  border-radius: 999px;
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 600;
  width: fit-content;
}

/* ============ BLOG GRID ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .35s ease;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,35,44,0.45);
  box-shadow: var(--shadow-red);
  color: inherit;
}
.blog-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--color-red-dark), #2a0a0d);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.85);
}
.blog-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent 60%);
}
.blog-card-image i { position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.blog-card-image.variant-2 { background: linear-gradient(135deg, #1a1a1a, var(--color-red-dark)); }
.blog-card-image.variant-3 { background: linear-gradient(135deg, var(--color-red), #1a1a1a); }
.blog-card-image.variant-4 { background: linear-gradient(135deg, #2a0a0d, var(--color-red)); }
.blog-card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-bottom: 14px;
}
.blog-card-category {
  background: rgba(200, 35, 44, 0.15);
  color: var(--color-red-light);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  border: 1px solid rgba(200,35,44,0.3);
}
.blog-card h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #fff;
}
.blog-card-excerpt {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
}
.blog-card-read {
  color: var(--color-red-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card:hover .blog-card-read::after {
  content: "\2192";
  transition: transform .25s ease;
  transform: translateX(4px);
}
.blog-card-read::after { content: "\2192"; }
.blog-read-time { color: var(--color-gray-dark); }

/* ============ FEATURED ARTICLE ============ */
.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
  transition: all .35s ease;
  text-decoration: none;
  color: inherit;
}
.featured-article:hover {
  border-color: rgba(200,35,44,0.45);
  box-shadow: var(--shadow-red);
  color: inherit;
}
.featured-article-image {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.95);
  position: relative;
}
.featured-article-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
}
.featured-article-image i { position: relative; z-index: 1; filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5)); }
.featured-article-body {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 35, 44, 0.15);
  border: 1px solid rgba(200,35,44,0.3);
  color: var(--color-red-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
  margin-bottom: 18px;
}
.featured-article h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 18px;
  line-height: 1.2;
}
.featured-article-body p {
  color: var(--color-gray);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.featured-article-body .blog-card-meta { margin-bottom: 18px; }

/* ============ ARTICLE PAGE ============ */
.article-hero {
  padding: 160px 0 60px;
  position: relative;
  background: radial-gradient(ellipse at top, rgba(200,35,44,0.18), transparent 60%);
}
.article-hero .container { max-width: 860px; }
.article-hero .breadcrumb { margin-bottom: 30px; }
.article-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 24px;
  line-height: 1.15;
}
.article-hero .article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  margin-top: 30px;
  color: var(--color-gray);
  font-size: 0.92rem;
}
.article-meta .author-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-meta .author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.article-meta .author-name { color: #fff; font-weight: 600; }
.article-meta .dot { color: var(--color-gray-dark); }

.article-content {
  padding: 30px 0 80px;
}
.article-content .container { max-width: 760px; }
.article-content h2 {
  font-size: 1.75rem;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #fff;
}
.article-content h3 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: #fff;
}
.article-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #d4d4d4;
  margin-bottom: 22px;
}
.article-content ul, .article-content ol {
  margin: 20px 0 26px 20px;
  color: #d4d4d4;
}
.article-content li {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 10px;
}
.article-content blockquote {
  border-left: 4px solid var(--color-red);
  background: rgba(200, 35, 44, 0.06);
  padding: 22px 28px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e5e5e5;
  font-style: italic;
}
.article-content blockquote p:last-child { margin-bottom: 0; }
.article-content strong { color: #fff; }
.article-content a {
  color: var(--color-red-light);
  border-bottom: 1px solid rgba(200,35,44,0.4);
}
.article-content a:hover { border-bottom-color: var(--color-red-light); }
.article-content code {
  background: var(--color-bg-card);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.95em;
  color: var(--color-red-light);
  border: 1px solid var(--color-border);
}
.article-content .callout {
  background: linear-gradient(135deg, rgba(200,35,44,0.12), rgba(20,20,20,0.5));
  border: 1px solid rgba(200,35,44,0.3);
  border-radius: var(--radius);
  padding: 28px;
  margin: 36px 0;
}
.article-content .callout h4 {
  color: var(--color-red-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-content .callout p:last-child { margin-bottom: 0; }

.article-share {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 0;
  margin-top: 50px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.article-share span { color: var(--color-gray); font-size: 0.9rem; font-weight: 600; }
.article-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 0.95rem;
}
.article-share a:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

.article-cta {
  background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 120%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
}
.article-cta h3 { color: #fff; margin-bottom: 12px; position: relative; }
.article-cta p { color: rgba(255,255,255,0.92); margin-bottom: 24px; position: relative; }
.article-cta .btn { background: #fff; color: var(--color-red-dark); position: relative; }
.article-cta .btn:hover { background: #0a0a0a; color: #fff; }

.related-articles {
  padding: 80px 0;
  background: var(--color-bg-elev);
  border-top: 1px solid var(--color-border);
}

/* Blog filter pills */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.blog-filter {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-gray);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
}
.blog-filter:hover, .blog-filter.active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

@media (max-width: 900px) {
  .featured-article { grid-template-columns: 1fr; }
  .featured-article-image { min-height: 240px; font-size: 3.5rem; }
  .featured-article-body { padding: 36px 28px; }
  .article-content p, .article-content li { font-size: 1rem; }
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-family: var(--font-body);
}
.whatsapp-float-btn {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.85rem;
  box-shadow: 0 8px 32px rgba(200, 35, 44, 0.5), 0 0 0 0 rgba(200, 35, 44, 0.6);
  transition: all .3s ease;
  position: relative;
  border: 2px solid rgba(255,255,255,0.1);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  z-index: -1;
  opacity: 0.4;
  filter: blur(12px);
}
.whatsapp-float-btn i {
  position: relative;
  z-index: 1;
}
.whatsapp-float:hover .whatsapp-float-btn {
  transform: scale(1.08) rotate(-8deg);
  background: linear-gradient(135deg, var(--color-red-light), var(--color-red));
  box-shadow: 0 12px 40px rgba(200, 35, 44, 0.7);
}
.whatsapp-float-tooltip {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #0a0a0a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  white-space: nowrap;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}
.whatsapp-float-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #0a0a0a;
  border-right: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}
.whatsapp-float-tooltip strong {
  display: block;
  color: var(--color-red-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.whatsapp-float-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  z-index: 2;
  animation: pulse 2s infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(200, 35, 44, 0.5), 0 0 0 0 rgba(200, 35, 44, 0.5); }
  50% { box-shadow: 0 8px 32px rgba(200, 35, 44, 0.5), 0 0 0 16px rgba(200, 35, 44, 0); }
}
@media (max-width: 560px) {
  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-float-btn { width: 58px; height: 58px; font-size: 1.65rem; }
  .whatsapp-float-tooltip { display: none; }
}

/* ============ SPEED BANNER ============ */
.speed-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(200, 35, 44, 0.12);
  border: 1px solid rgba(200, 35, 44, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-red-light);
  margin-bottom: 24px;
}
.speed-banner i { font-size: 0.9rem; }
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { opacity: 0.8; transform: scale(1.15); box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: rgba(10,10,10,0.98); padding: 30px 24px; gap: 20px; border-bottom: 1px solid var(--color-border); }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .feature-row, .contact-grid, .service-detail, .service-detail.reverse { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .sd-visual { order: 0; }
  .feature-row.reverse .feature-text { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .compact-list { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .hero { padding: 140px 0 80px; }
  .cta-band { padding: 50px 24px; }
  .contact-form { padding: 28px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
