/* ============ Reset + Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #fafafc;
  color: #1f2333;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

:root {
  --navy: #0b1538;
  --navy-soft: #1a2454;
  --royal: #1947ba;
  --royal-bright: #2563eb;
  --teal: #1ec1e0;
  --teal-bright: #38d4f0;
  --red: #e23934;
  --red-bright: #f04b46;
  --gold: #fbbf24;
  --cream: #fafafc;
  --slate: #475569;
  --slate-soft: #94a3b8;
  --line: rgba(15, 25, 60, 0.08);
}

.container { width: min(1200px, 92%); margin-inline: auto; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
}
h1, h2, h3, h4 { font-family: inherit; line-height: 1.15; letter-spacing: -0.02em; margin: 0; color: var(--navy); }
h1 { font-size: clamp(2.5rem, 6.5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 2.85rem); font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 700; }
p { margin: 0 0 1rem; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(226, 57, 52, 0.55);
}
.btn-primary:hover { background: var(--red-bright); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.45); }
.btn-light {
  background: var(--royal);
  color: #fff;
  box-shadow: 0 10px 25px -10px rgba(25, 71, 186, 0.55);
}
.btn-light:hover { background: var(--royal-bright); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: rgba(15,25,60,0.04); border-color: rgba(15,25,60,0.18); }

/* ============ Header ============ */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.95rem 0;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo img { height: 38px; width: auto; }
.nav-cta { display: flex; align-items: center; gap: 0.85rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; color: var(--navy);
  font-size: 0.95rem;
}
.nav-phone-icon {
  width: 32px; height: 32px;
  background: var(--royal);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-links { display: none; gap: 1.5rem; font-weight: 500; color: var(--slate); font-size: 0.95rem; align-items: center; }
.nav-links a:hover { color: var(--royal); }
@media (min-width: 900px) { .nav-links { display: flex; } }

/* ============ Mobile hamburger ============ */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  margin-left: 0.5rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.nav-toggle:hover { border-color: rgba(15,25,60,0.18); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
}
.nav-toggle-icon > span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
body.menu-open .nav-toggle-icon > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle-icon > span:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
body.menu-open .nav-toggle-icon > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hide phone-number text on the smallest screens to save room, keep icon */
@media (max-width: 480px) {
  .nav-phone-text { display: none; }
  .nav-phone { gap: 0; }
}

/* ============ Mobile menu drawer ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 45;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body.menu-open .mobile-menu { transform: translateX(0); }
@media (min-width: 900px) { .mobile-menu { display: none; } }

.mobile-menu-inner {
  padding: 5.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 28rem;
  margin: 0 auto;
}

.mobile-payment-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--red);
  color: #fff !important;
  padding: 1.1rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 14px 30px -10px rgba(226, 57, 52, 0.5);
  transition: background 0.15s ease, transform 0.15s ease;
}
.mobile-payment-cta:hover { background: var(--red-bright); transform: translateY(-1px); color: #fff !important; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  padding: 1.1rem 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy) !important;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a::after {
  content: '→';
  color: var(--slate-soft);
  font-size: 1.2rem;
  font-weight: 400;
}
.mobile-nav a:active { background: rgba(15,25,60,0.04); }

.mobile-menu-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy) !important;
  padding: 1.05rem 1.5rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.15s ease;
}
.mobile-menu-phone:hover { border-color: var(--royal); }
.mobile-menu-phone svg { color: var(--royal); }

/* When menu is open, lock body scroll + hide the floating call button */
body.menu-open { overflow: hidden; }
body.menu-open .mobile-call { display: none; }

/* Highlighted payment CTA in the nav: red pill so it pops vs the muted text links */
.nav-payment {
  background: var(--red);
  color: #fff;
  padding: 0.55rem 1.05rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px -8px rgba(226, 57, 52, 0.55);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-links a.nav-payment:hover {
  background: var(--red-bright);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(226, 57, 52, 0.6);
}

/* Small red pill version for the footer, same visual language */
.footer-payment {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.2rem;
  transition: background 0.15s ease;
}
.footer-payment:hover { background: var(--red-bright); color: #fff !important; }

/* ============ Hero ============ */
.hero {
  position: relative;
  background:
    radial-gradient(60% 80% at 20% 30%, rgba(30, 193, 224, 0.18) 0%, transparent 60%),
    radial-gradient(50% 60% at 90% 80%, rgba(226, 57, 52, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #050b22 0%, #0b1538 60%, #1a2454 100%);
  color: #fff;
  overflow: hidden;
  padding: 4rem 0 6rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero-stack {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stack .eyebrow { display: block; margin-bottom: 1.25rem; }

.hero-banner {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 35px 90px -20px rgba(30, 193, 224, 0.4),
    0 0 0 1px rgba(255,255,255,0.08);
  background: #0b1538;
  line-height: 0;
}
.hero-banner img { width: 100%; height: auto; display: block; }
.hero-image-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: rgba(11, 21, 56, 0.85);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: 9999px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.18);
  z-index: 2;
}
.hero-image-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5.2vw, 3.75rem);
}
.hero h1 span { color: var(--teal); }
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 38rem;
  margin: 0 auto 2rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}
.hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}
.hero-meta-item { display: flex; align-items: center; gap: 0.65rem; font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.hero-meta-item svg { color: var(--teal); flex-shrink: 0; }

/* ============ Services ============ */
.section { padding: 5.5rem 0; }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.section-head .eyebrow { margin-bottom: 0.85rem; }
.section-head p { font-size: 1.1rem; color: var(--slate); margin-top: 0.85rem; }

.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(11, 21, 56, 0.18);
  border-color: rgba(30, 193, 224, 0.4);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--royal) 0%, var(--teal) 100%);
  color: #fff;
}
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.service-card p { color: var(--slate); margin: 0; font-size: 0.97rem; }

/* ============ How it works ============ */
.how {
  background: linear-gradient(180deg, #fafafc 0%, #f1f5fb 100%);
  position: relative;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .how-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; } }

.how-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px -20px rgba(11, 21, 56, 0.3);
  max-width: 440px;
  margin: 0 auto;
}
.how-image img { width: 100%; height: auto; display: block; }

.steps { list-style: none; padding: 0; margin: 0; }
.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  font-weight: 800;
  font-size: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit;
}
.step h3 { margin-bottom: 0.35rem; }
.step p { color: var(--slate); margin: 0; }

/* ============ Tiers ============ */
.tiers { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.tiers::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 70% at 10% 20%, rgba(30, 193, 224, 0.12) 0%, transparent 60%),
    radial-gradient(40% 60% at 90% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.tiers .section-head h2 { color: #fff; }
.tiers .section-head p { color: rgba(255,255,255,0.7); }
.tiers-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px; margin: 0 auto;
}
@media (min-width: 720px) { .tiers-grid { grid-template-columns: 1fr 1fr; } }

.tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.tier:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.tier.tier-premium {
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.08) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(251, 191, 36, 0.3);
}
.tier-badge-img {
  width: 150px; height: 150px;
  margin: 0 auto 1.25rem;
  background: #fff;
  border-radius: 50%;
  padding: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.tier-badge-img img { width: 100%; height: 100%; object-fit: contain; }
.tier h3 { color: #fff; font-size: 1.55rem; margin-bottom: 0.4rem; }
.tier-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.tier.tier-standard .tier-tag { background: rgba(30, 193, 224, 0.18); color: var(--teal-bright); }
.tier.tier-premium .tier-tag { background: rgba(251, 191, 36, 0.18); color: var(--gold); }
.tier p { color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }
.tier ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.tier li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.tier li svg { color: var(--teal); flex-shrink: 0; margin-top: 0.2rem; }
.tier.tier-premium li svg { color: var(--gold); }

/* ============ Area ============ */
.area { background: #fff; }
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .area-grid { grid-template-columns: 1.2fr 0.8fr; } }
.area h2 { margin-bottom: 1rem; }
.area p { color: var(--slate); font-size: 1.1rem; margin-bottom: 1.5rem; }
.cities {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
}
.cities span {
  background: #f1f5fb;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: 9999px;
}
.cities span.lead {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.area-visual {
  position: relative;
  background: linear-gradient(135deg, var(--royal) 0%, var(--teal) 100%);
  border-radius: 28px;
  padding: 2.5rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 25px 60px -25px rgba(25, 71, 186, 0.45);
}
.area-visual h3 { color: #fff; font-size: 2.5rem; margin-bottom: 0.25rem; font-weight: 900; }
.area-visual p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1rem; }
.area-visual .area-pin {
  width: 60px; height: 60px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--royal);
}

/* ============ Contact ============ */
.contact {
  background: linear-gradient(180deg, #f1f5fb 0%, #fafafc 100%);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 960px; margin: 0 auto;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }
.contact-side h2 { margin-bottom: 1rem; }
.contact-side p { color: var(--slate); margin-bottom: 1.75rem; }
.contact-side .contact-phone {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 0.85rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-side .contact-phone:hover { border-color: var(--royal); transform: translateY(-2px); }
.contact-phone-icon {
  width: 48px; height: 48px;
  background: var(--royal);
  color: #fff;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-phone-label { font-size: 0.78rem; color: var(--slate-soft); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-phone-num { font-size: 1.25rem; font-weight: 800; color: var(--navy); }

form.inquiry {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -25px rgba(11, 21, 56, 0.18);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 600px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fafafc;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--royal);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field-honey { position: absolute; left: -9999px; top: -9999px; }
form.inquiry .submit-row {
  margin-top: 1.4rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
form.inquiry small { color: var(--slate-soft); font-size: 0.82rem; }

.flash {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex; gap: 0.65rem; align-items: flex-start;
}
.flash-ok { background: rgba(34, 197, 94, 0.1); color: #15803d; border: 1px solid rgba(34, 197, 94, 0.25); }
.flash-err { background: rgba(226, 57, 52, 0.1); color: #b91c1c; border: 1px solid rgba(226, 57, 52, 0.25); }

/* ============ Footer ============ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-brand img { height: 42px; width: auto; background: #fff; padding: 0.55rem 0.85rem; border-radius: 10px; }
.footer-brand p { margin-top: 1rem; max-width: 24rem; color: rgba(255,255,255,0.6); }
.footer h4, footer h4 { color: #fff; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer ul, footer ul { list-style: none; padding: 0; margin: 0; }
.footer li, footer li { padding: 0.35rem 0; }
.footer a:hover, footer a:hover { color: var(--teal-bright); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============ Floating phone (mobile) ============ */
.mobile-call {
  display: none;
  position: fixed; bottom: 1.25rem; right: 1.25rem;
  width: 58px; height: 58px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px -8px rgba(226, 57, 52, 0.6);
  align-items: center; justify-content: center;
  z-index: 60;
  animation: pulse-call 2s infinite;
}
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(226, 57, 52, 0.6), 0 0 0 0 rgba(226, 57, 52, 0.4); }
  50% { box-shadow: 0 12px 30px -8px rgba(226, 57, 52, 0.6), 0 0 0 14px rgba(226, 57, 52, 0); }
}
@media (max-width: 720px) { .mobile-call { display: inline-flex; } }

/* ============ Specials ============ */
.specials { background: #fff; }
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.special-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 40px -24px rgba(11, 21, 56, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.special-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -22px rgba(11, 21, 56, 0.25);
  border-color: rgba(251, 191, 36, 0.55);
}
.special-media { line-height: 0; background: var(--navy); }
.special-media img { width: 100%; height: 200px; object-fit: cover; display: block; }
.special-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.6rem 1.6rem 1.75rem;
}
.special-date {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  align-self: flex-start;
  background: rgba(251, 191, 36, 0.16);
  color: #946408;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  margin-bottom: 0.9rem;
}
.special-date svg { color: #d99e1a; }
.special-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.special-card p { color: var(--slate); margin: 0 0 1.4rem; font-size: 0.97rem; }
.special-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.72rem 1.25rem;
  font-size: 0.92rem;
}
