:root {
  --black: #05070b;
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.86);
  --blue: #00b7ff;
  --green: #22ff88;
  --yellow: #ffe45c;
  --panel: rgba(7, 13, 24, 0.88);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.site-header {
  padding: 20px 0; /* added breathing room */
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--blue)) 1;
  animation: borderShift 5s linear infinite;
}

@keyframes borderShift {
  0% { border-image-source: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--blue)); }
  50% { border-image-source: linear-gradient(90deg, var(--yellow), var(--blue), var(--green), var(--yellow)); }
  100% { border-image-source: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--blue)); }
}

.main-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
}

.brand {
  grid-column: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  white-space: nowrap;
}

.brand-logo {
  width: 54px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 183, 255, 0.55));
}

.brand-text {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
}

.nav { padding-top:10px; padding-bottom:10px; }
.nav-links {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  padding: 12px 0 14px;
}

.nav { padding-top:10px; padding-bottom:10px; }
.nav-links a {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 0;
  padding: 6px 0;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav { padding-top:10px; padding-bottom:10px; }
.nav-links a:hover,
.nav { padding-top:10px; padding-bottom:10px; }
.nav-links a:focus-visible {
  color: var(--yellow);
  text-shadow: 0 0 14px rgba(255, 228, 92, 0.8);
  outline: none;
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 20px;
  width: 48px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: var(--white);
  border-radius: 20px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-bg-picture,
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.hero-content,
.hero-lang {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(980px, 100%);
  margin: 0 auto;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: clamp(0.95rem, 1.7vw, 1.16rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 auto 24px;
  max-width: 920px;
  font-size: clamp(2.1rem, 6vw, 4.7rem);
  line-height: 1;
  font-weight: 950;
}

.hero-text {
  max-width: 780px;
  margin: 0 auto 34px;
  color: var(--soft-white);
  font-size: clamp(1.08rem, 2.2vw, 1.38rem);
  line-height: 1.55;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.btn.primary {
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #001018;
  box-shadow: 0 0 28px rgba(0, 183, 255, 0.38);
}

.btn.secondary {
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
  text-align: center;
  scroll-margin-top: 120px;
}

.section h2 {
  margin: 0 auto 18px;
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.section p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--soft-white);
  font-size: 1.18rem;
  line-height: 1.7;
}

.dark-card {
  width: min(1120px, calc(100% - 32px));
  margin-top: 32px;
  padding: 56px 28px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 0 48px rgba(0, 183, 255, 0.12);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  font-size: 1rem;
}

.contact-section { padding-bottom: 110px; }
.contact-section .btn { margin-top: 28px; }

@media (max-width: 760px) {
  .main-nav {
    width: min(100% - 24px, 1180px);
    min-height: 78px;
    display: flex;
    justify-content: center;
  }

  .brand-logo { width: 46px; height: 36px; }
  .brand-text { font-size: 1.45rem; }

  .menu-toggle { display: block; }

  .nav { padding-top:10px; padding-bottom:10px; }
.nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 22px 22px;
  }

  .nav { padding-top:10px; padding-bottom:10px; }
.nav-links.open { display: flex; }

  .nav { padding-top:10px; padding-bottom:10px; }
.nav-links a {
    width: 100%;
    padding: 16px 8px;
    text-align: center;
  }

  .hero {
    min-height: calc(100vh - 78px);
    padding: 64px 16px;
  }

  .hero-bg-img {
    object-position: center;
  }

  .hero::after {
    background: linear-gradient(rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.64));
  }

  .hero h1 { font-size: clamp(1.9rem, 10vw, 3.2rem); }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }

  .cards { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .dark-card { padding: 44px 20px; }
}

/* =========================================================
   BLOG ARCHIVE REPAIR — shared glowing header + footer fixes
   Added so blog-archive.html matches the working homepage.
   ========================================================= */

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: #000 !important;
  border: 2px solid transparent !important;
  border-radius: 0 0 12px 12px !important;
  border-bottom: 0 !important;
  border-image: none !important;
  box-shadow: 0 0 18px rgba(0, 183, 255, 0.18) !important;
  overflow: visible !important;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 0 0 12px 12px;
  padding: 2px;
  background: linear-gradient(270deg, #00b7ff, #22ff88, #ffe45c, #00b7ff);
  background-size: 600% 600%;
  animation: poweroutBorderShift 6s linear infinite;
  pointer-events: none;
  z-index: -1;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes poweroutBorderShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.main-nav {
  position: relative;
  z-index: 2;
}

.nav-links a {
  text-decoration: none !important;
}

.nav-links .nav-language {
  border: 1px solid #00eaff !important;
  border-radius: 999px !important;
  padding: 6px 12px !important;
}

.nav-links .nav-language.active {
  background: #00aaff !important;
  color: #000 !important;
}

.nav-emergency {
  color: #ff4d4d !important;
  font-weight: 900 !important;
}

.nav-emergency:hover,
.nav-emergency:focus-visible {
  color: #fff !important;
  text-shadow: 0 0 12px rgba(255, 0, 0, .9) !important;
}

.footer {
  background: #000 !important;
  border-top: 2px solid #ff9900 !important;
  padding: 60px 20px 170px !important;
  overflow: visible !important;
}

.footer-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 40px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  align-items: start !important;
}

.footer-center a {
  display: block !important;
  color: #ccc !important;
  margin-bottom: 10px !important;
  text-decoration: none !important;
}

.footer-center a:hover,
.footer-center a:focus-visible {
  color: #00eaff !important;
  text-shadow: 0 0 12px rgba(0, 234, 255, .55) !important;
}

.footer-logo {
  display: block !important;
  width: 180px !important;
  max-width: 80% !important;
  margin: 0 auto 10px !important;
}

.footer-right,
.footer-right p {
  text-align: center !important;
}

.created-btn-wrap {
  text-align: center !important;
  margin-top: 12px !important;
  position: relative !important;
  z-index: 5 !important;
}

.created-btn {
  display: inline-block !important;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  background: rgba(0,234,255,.12) !important;
  border: 1px solid rgba(0,234,255,.55) !important;
  color: #00eaff !important;
  text-decoration: none !important;
  font-size: .88rem !important;
  font-weight: 700 !important;
}

.created-btn:hover,
.created-btn:focus-visible {
  box-shadow: 0 0 12px rgba(0,234,255,.55) !important;
}

@media (max-width: 800px) {
  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-left,
  .footer-center,
  .footer-right,
  .footer-right p {
    text-align: center !important;
  }

  .footer-logo {
    width: min(260px, 70vw) !important;
  }
}

/* ===== FOOTER FINAL REPAIR — keep columns natural, center only bottom line ===== */
.footer-container {
  text-align: initial !important;
}

.footer-left {
  text-align: center !important;
}

.footer-center {
  text-align: center !important;
}

.footer-center a {
  display: block !important;
  margin: 0 0 18px 0 !important;
  line-height: 1.55 !important;
}

.footer-center a:last-child {
  margin-bottom: 0 !important;
}

.footer-right,
.footer-right p {
  text-align: center !important;
}

.footer-bottom {
  display: block !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 42px auto 0 !important;
  text-align: center !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  clear: both !important;
}

.footer-bottom .created-btn-wrap {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-top: 14px !important;
}

@media (max-width: 800px) {
  .footer-container,
  .footer-left,
  .footer-center,
  .footer-right,
  .footer-right p,
  .footer-bottom {
    text-align: center !important;
  }
}


/* =========================================================
   BLOG ARCHIVE PAGE — neon cards and emergency CTA
   ========================================================= */
.blog-archive-page {
  background: #05070b;
  color: #fff;
}

.blog-archive-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 42px;
  text-align: center;
}

.blog-archive-hero h1 {
  margin: 0 auto 18px;
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(0, 183, 255, 0.24);
}

.blog-archive-hero h2 {
  margin: 0 auto 18px;
  max-width: 800px;
  font-size: clamp(1.55rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  color: #ffe45c;
}

.blog-archive-hero p {
  max-width: 850px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.archive-emergency-box {
  max-width: 920px;
  margin: 34px auto 0;
  padding: 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 50, 50, 0.65);
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.16), rgba(0, 183, 255, 0.08));
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.18), 0 0 28px rgba(0, 183, 255, 0.10);
}

.archive-emergency-box strong {
  color: #ffffff;
}

.archive-emergency-call,
.archive-final-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 16px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ff2626;
  color: #ffffff;
  font-weight: 950;
  letter-spacing: 0.02em;
  box-shadow: 0 0 24px rgba(255, 38, 38, 0.45);
  text-decoration: none;
}

.archive-guidance {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 88px;
  text-align: center;
}

.archive-guidance h2 {
  margin: 0 auto 16px;
  max-width: 860px;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.archive-guidance > p {
  max-width: 900px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.86);
  font-size: 1.12rem;
  line-height: 1.75;
}

.archive-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.archive-card {
  min-height: 280px;
  padding: 28px 24px;
  border-radius: 26px;
  text-align: left;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 28px rgba(0, 183, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.archive-card .archive-icon {
  display: block;
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.archive-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.34rem;
  line-height: 1.2;
}

.archive-card p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.84);
  font-size: 1rem;
  line-height: 1.65;
}

.archive-card a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  width: fit-content;
  border-bottom: 2px solid currentColor;
}

.archive-card.blue { border-color: rgba(0, 183, 255, 0.65); box-shadow: 0 0 30px rgba(0,183,255,0.18); }
.archive-card.yellow { border-color: rgba(255, 228, 92, 0.70); box-shadow: 0 0 30px rgba(255,228,92,0.15); }
.archive-card.red { border-color: rgba(255, 60, 60, 0.70); box-shadow: 0 0 30px rgba(255,60,60,0.16); }
.archive-card.green { border-color: rgba(34, 255, 136, 0.65); box-shadow: 0 0 30px rgba(34,255,136,0.15); }
.archive-card.purple { border-color: rgba(190, 95, 255, 0.70); box-shadow: 0 0 30px rgba(190,95,255,0.16); }
.archive-card.orange { border-color: rgba(255, 153, 0, 0.72); box-shadow: 0 0 30px rgba(255,153,0,0.17); }

.archive-final-cta {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 88px;
  padding: 34px 26px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(0, 234, 255, 0.55);
  background: rgba(0, 234, 255, 0.075);
  box-shadow: 0 0 32px rgba(0, 234, 255, 0.13);
}

.archive-final-cta p {
  max-width: 850px;
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.90);
  font-size: 1.14rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .archive-card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .blog-archive-hero { padding-top: 62px; }
  .archive-card-grid { grid-template-columns: 1fr; }
  .archive-card { min-height: auto; }
}


/* ===== BLOG POST PAGE ===== */
.blog-post-page {
  background: #000;
  color: #fff;
}

.blog-post-wrap {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 92px;
}

.blog-breadcrumb {
  margin-bottom: 26px;
}

.blog-breadcrumb a {
  color: #00eaff;
  font-weight: 800;
  text-decoration: none;
}

.blog-post-hero {
  text-align: center;
  padding: 52px 24px 42px;
  border-radius: 30px;
  border: 1px solid rgba(0, 234, 255, 0.55);
  background: radial-gradient(circle at top, rgba(0, 234, 255, 0.14), rgba(0, 0, 0, 0.92) 58%);
  box-shadow: 0 0 42px rgba(0, 234, 255, 0.14);
}

.blog-post-hero h1 {
  max-width: 860px;
  margin: 12px auto 18px;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 1.04;
}

.blog-post-subtitle {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,0.88);
  font-size: 1.16rem;
  line-height: 1.75;
}

.blog-post-call,
.blog-post-contact,
.blog-post-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.blog-post-call,
.blog-post-final-cta a {
  background: #ff2626;
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 38, 38, 0.45);
}

.blog-post-contact {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
}

.blog-post-card {
  margin-top: 30px;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 28px;
  border: 1px solid rgba(34, 255, 136, 0.55);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 0 34px rgba(34,255,136,0.12);
}

.blog-post-card p,
.blog-post-card li {
  color: rgba(255,255,255,0.90);
  font-size: 1.12rem;
  line-height: 1.85;
}

.blog-post-card h2 {
  margin: 34px 0 14px;
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

.blog-checklist {
  margin: 16px 0 24px;
  padding-left: 1.25rem;
}

.blog-checklist li {
  margin-bottom: 12px;
}

.blog-warning-box {
  margin: 30px 0;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 38, 38, 0.65);
  background: rgba(255, 38, 38, 0.10);
  box-shadow: 0 0 28px rgba(255, 38, 38, 0.14);
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
}

.blog-post-final-cta {
  margin-top: 30px;
  padding: 30px 24px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(0, 183, 255, 0.60);
  background: rgba(0, 183, 255, 0.08);
  box-shadow: 0 0 30px rgba(0,183,255,0.12);
}

.blog-post-final-cta p {
  margin: 0 0 12px;
  font-size: 1.18rem;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 640px) {
  .blog-post-wrap {
    padding-top: 42px;
  }

  .blog-post-call,
  .blog-post-contact,
  .blog-post-final-cta a {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}


/* === Conversion CTA upgrades === */
.conversion-cta,
.blog-inline-cta,
.archive-urgent-note,
.antonio-choice {
  max-width: 1100px;
  margin: 28px auto;
  padding: 22px;
  border: 1px solid rgba(255, 210, 0, 0.75);
  border-radius: 22px;
  background: rgba(255, 210, 0, 0.08);
  box-shadow: 0 0 24px rgba(255, 210, 0, 0.16);
  text-align: center;
}
.conversion-cta p, .blog-inline-cta p, .archive-urgent-note p {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 800;
}
.conversion-cta a, .blog-inline-cta a, .archive-urgent-note a {
  display: inline-block;
  color: #000;
  background: #ffd400;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(255, 210, 0, 0.35);
}
.antonio-choice h2 { margin-top: 0; }
.antonio-choice ul {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.antonio-choice li {
  border: 1px solid rgba(0, 255, 200, 0.45);
  border-radius: 16px;
  padding: 16px;
  background: rgba(0, 255, 200, 0.06);
  font-weight: 800;
}
.footer-call-strong {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: #ffd400;
  font-weight: 900;
  line-height: 1.5;
}
@media (max-width: 850px) {
  .antonio-choice ul { grid-template-columns: 1fr; }
  .conversion-cta, .blog-inline-cta, .archive-urgent-note, .antonio-choice { margin: 22px 16px; }
}

/* Safe anchor target for the Emergency nav button */
#read-first {
  scroll-margin-top: 110px;
}


/* FLOATING CALL BUTTON START */
.floating-call-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ff3b1f;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 16px rgba(255, 59, 31, 0.95),
    0 0 34px rgba(255, 168, 0, 0.55),
    0 10px 28px rgba(0, 0, 0, 0.45);
  animation: floatingCallPulse 1.8s ease-in-out infinite;
}

.floating-call-btn:hover,
.floating-call-btn:focus {
  transform: translateY(-2px) scale(1.03);
  color: #ffffff;
  text-decoration: none;
  outline: none;
  box-shadow:
    0 0 22px rgba(255, 59, 31, 1),
    0 0 44px rgba(255, 214, 0, 0.8),
    0 12px 32px rgba(0, 0, 0, 0.55);
}

.floating-call-close,
.floating-call-mini {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.86);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.22),
    0 0 24px rgba(255, 59, 31, 0.5),
    0 8px 22px rgba(0, 0, 0, 0.5);
}

.floating-call-close:hover,
.floating-call-close:focus,
.floating-call-mini:hover,
.floating-call-mini:focus {
  transform: translateY(-2px) scale(1.05);
  outline: none;
}

.floating-call-mini {
  display: none;
  background: #ff3b1f;
  animation: floatingCallPulse 1.8s ease-in-out infinite;
}

.floating-call-widget.is-collapsed .floating-call-btn,
.floating-call-widget.is-collapsed .floating-call-close {
  display: none;
}

.floating-call-widget.is-collapsed .floating-call-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-call-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.floating-call-text,
.floating-call-number {
  line-height: 1;
  white-space: nowrap;
}

@keyframes floatingCallPulse {
  0%, 100% {
    box-shadow:
      0 0 14px rgba(255, 59, 31, 0.9),
      0 0 30px rgba(255, 168, 0, 0.45),
      0 10px 28px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow:
      0 0 24px rgba(255, 59, 31, 1),
      0 0 52px rgba(255, 214, 0, 0.75),
      0 12px 32px rgba(0, 0, 0, 0.55);
  }
}

@media (max-width: 640px) {
  .floating-call-widget {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .floating-call-btn {
    justify-content: center;
    padding: 15px 14px;
    font-size: 0.98rem;
    flex: 1;
  }

  .floating-call-text::after {
    content: " —";
  }

  .floating-call-widget.is-collapsed {
    left: 16px;
    right: auto;
  }
}

@media (max-width: 380px) {
  .floating-call-btn {
    gap: 6px;
    font-size: 0.9rem;
  }

  .floating-call-close,
  .floating-call-mini {
    width: 40px;
    height: 40px;
  }
}
/* FLOATING CALL BUTTON END */

/* =========================================================
   PREMIUM DEEP RED CALL BUTTON OVERRIDE
   Added safely at the end so it wins over older yellow styles.
   ========================================================= */
:root {
  --emergency-red-dark: #4b0008;
  --emergency-red: #7a0012;
  --emergency-red-bright: #b11226;
  --emergency-red-glow: #ff3045;
}

/* Main call/action buttons only */
.btn.primary,
.btn.emergency-btn,
.btn.main-cta,
.conversion-cta a,
.blog-inline-cta a,
.archive-urgent-note a,
.blog-post-call,
.blog-post-final-cta a,
.floating-call-btn,
.floating-call-mini {
  background: linear-gradient(135deg, var(--emergency-red-bright), var(--emergency-red), var(--emergency-red-dark)) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 80, 96, 0.95) !important;
  box-shadow:
    0 0 14px rgba(255, 48, 69, 0.48),
    0 0 30px rgba(122, 0, 18, 0.42),
    0 12px 28px rgba(0, 0, 0, 0.45) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65) !important;
}

.btn.primary:hover,
.btn.emergency-btn:hover,
.btn.main-cta:hover,
.conversion-cta a:hover,
.blog-inline-cta a:hover,
.archive-urgent-note a:hover,
.blog-post-call:hover,
.blog-post-final-cta a:hover,
.floating-call-btn:hover,
.floating-call-mini:hover,
.btn.primary:focus-visible,
.btn.emergency-btn:focus-visible,
.btn.main-cta:focus-visible,
.conversion-cta a:focus-visible,
.blog-inline-cta a:focus-visible,
.archive-urgent-note a:focus-visible,
.blog-post-call:focus-visible,
.blog-post-final-cta a:focus-visible,
.floating-call-btn:focus-visible,
.floating-call-mini:focus-visible {
  background: linear-gradient(135deg, #d01830, #8b0016, #52000a) !important;
  color: #ffffff !important;
  border-color: rgba(255, 120, 132, 1) !important;
  box-shadow:
    0 0 20px rgba(255, 48, 69, 0.85),
    0 0 46px rgba(255, 48, 69, 0.45),
    0 14px 32px rgba(0, 0, 0, 0.55) !important;
  transform: translateY(-2px);
}

/* Red premium frame around repeated CTA boxes instead of yellow */
.conversion-cta,
.blog-inline-cta,
.archive-urgent-note {
  border-color: rgba(255, 48, 69, 0.72) !important;
  background: linear-gradient(135deg, rgba(122, 0, 18, 0.18), rgba(0, 0, 0, 0.24)) !important;
  box-shadow: 0 0 28px rgba(255, 48, 69, 0.16) !important;
}

/* Floating button: stronger red pulse only here */
.floating-call-btn,
.floating-call-mini {
  animation: floatingCallPulseRed 1.8s ease-in-out infinite !important;
}

@keyframes floatingCallPulseRed {
  0%, 100% {
    box-shadow:
      0 0 12px rgba(255, 48, 69, 0.72),
      0 0 28px rgba(122, 0, 18, 0.42),
      0 10px 28px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow:
      0 0 24px rgba(255, 48, 69, 1),
      0 0 58px rgba(255, 48, 69, 0.62),
      0 12px 32px rgba(0, 0, 0, 0.55);
  }
}

/* Footer phone line changed from yellow to premium red accent */
.footer-call-strong {
  color: #ff6b76 !important;
}
