/* Discount Net LLC — modern static site */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #7c3aed;
  --bg: #f1f5f9;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --radius: 1rem;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(37, 99, 235, 0.15);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
main { flex: 1; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 56rem; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.animate-in { animation: fadeInUp 0.7s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.disclaimer-bar {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #cbd5e1; font-size: 11px; padding: 0.5rem 0;
}
.disclaimer-bar .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.5rem;
}
.disclaimer-bar a { color: #38bdf8; font-weight: 700; text-decoration: none; }
.disclaimer-bar a:hover { color: #7dd3fc; }
.nav-row { display: flex; align-items: center; justify-content: space-between; min-height: 4.25rem; gap: 0.75rem; }
.logo { display: flex; flex-direction: column; text-decoration: none !important; }
.logo-title { font-size: 1.25rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.logo-badge {
  color: var(--primary); font-size: 0.7rem; background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #93c5fd; padding: 0 0.35rem; border-radius: 6px; margin-left: 0.2rem;
}
.logo-tag { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.nav-links { display: none; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  padding: 0.5rem 0.85rem; font-size: 0.875rem; font-weight: 600; color: var(--muted);
  border-radius: 999px; text-decoration: none; transition: all var(--transition);
}
.nav-links a:hover { background: #f1f5f9; color: var(--text); }
.nav-links a.active { color: var(--primary); background: #eff6ff; }
.nav-cta { display: none; gap: 0.65rem; align-items: center; }

.menu-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: #f1f5f9; border: none; border-radius: 12px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px; background: var(--text); margin: 0 auto;
  transition: var(--transition); border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; border-top: 1px solid #e2e8f0; background: #fff;
  padding: 0.5rem; max-height: 70vh; overflow-y: auto;
}
.mobile-menu.open { display: block; animation: fadeIn 0.2s ease; }
.mobile-menu a {
  display: block; padding: 0.85rem 1rem; color: var(--text); font-weight: 600;
  text-decoration: none; border-radius: 0.75rem;
}
.mobile-menu a.active { background: #eff6ff; color: var(--primary); }
.mobile-call { margin: 1rem; }

@media (min-width: 1024px) {
  .nav-links, .nav-cta { display: flex; }
  .menu-toggle, .mobile-only-call { display: none !important; }
}
@media (max-width: 1023px) {
  .nav-cta { display: none; }
  .mobile-only-call { display: inline-flex !important; font-size: 0.75rem; padding: 0.4rem 0.85rem; border-radius: 999px; }
  .disclaimer-text { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.65rem 1.25rem; font-size: 0.875rem; font-weight: 700; border-radius: 999px;
  border: none; cursor: pointer; text-decoration: none !important;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline { background: #fff; color: var(--text); border: 2px solid #e2e8f0; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: #fff; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: 3.5rem 0 4.5rem;
  background: linear-gradient(160deg, #fff 0%, #eff6ff 45%, #f8fafc 100%);
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -20%; width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; gap: 2.5rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.15fr 1fr; } }
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; font-weight: 700;
  background: rgba(255,255,255,0.9); color: var(--primary); border: 1px solid #bfdbfe;
  padding: 0.35rem 0.9rem; border-radius: 999px; box-shadow: var(--shadow);
}
h1 {
  font-size: clamp(1.85rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.08;
  color: var(--text); margin: 0.85rem 0; letter-spacing: -0.03em;
}
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; margin: 0.5rem 0 1rem; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 36rem; line-height: 1.7; }
.check-list { display: grid; gap: 0.6rem; margin: 1.25rem 0; padding: 0; }
@media (min-width: 640px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list li {
  list-style: none; font-size: 0.9rem; font-weight: 500; display: flex; gap: 0.5rem;
  background: rgba(255,255,255,0.7); padding: 0.5rem 0.75rem; border-radius: 0.5rem;
}
.check-list li::before { content: "✓"; color: #10b981; font-weight: 800; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }

.consult-card {
  background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff; border-radius: 1.5rem; padding: 1.75rem 2rem;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.08);
  animation: float 5s ease-in-out infinite;
}
.consult-card h3 { color: #93c5fd; margin: 0 0 1rem; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.75rem; }
.consult-card ol { padding: 0; list-style: none; margin: 0; }
.consult-card li { display: flex; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.85rem; }
.consult-card .num {
  width: 1.5rem; height: 1.5rem; background: rgba(59, 130, 246, 0.3); color: #93c5fd;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.consult-card .phone-box { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.consult-card .phone-box a { color: #fff; font-size: clamp(1.25rem, 4vw, 1.65rem); font-weight: 800; text-decoration: none; }
.consult-card .phone-box a:hover { color: #93c5fd; }
.consult-card .address-box { margin-top: 0.75rem; font-size: 11px; color: #94a3b8; line-height: 1.5; }

/* Hero & site images */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.hero-frame {
  border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; flex-shrink: 0;
}
.hero-image {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.hero-visual:hover .hero-image { transform: scale(1.02); }
/* Consultation card sits below the image (never on top of it) */
.hero-overlay-card {
  position: static;
  background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff; border-radius: 1rem; padding: 1.15rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.hero-overlay-card h3 { margin: 0 0 0.5rem; font-size: 0.95rem; color: #93c5fd; }
.hero-steps { margin: 0 0 0.75rem; padding-left: 1.1rem; font-size: 0.8rem; color: #cbd5e1; line-height: 1.55; }
.hero-steps li { margin-bottom: 0.25rem; }
.hero-overlay-card .phone-box { margin-top: 0.5rem; padding-top: 0.65rem; border-top: 1px solid rgba(255,255,255,0.12); text-align: left; }
.hero-phone-label { font-size: 10px; color: #38bdf8; font-weight: 700; margin: 0 0 0.15rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-overlay-card .phone-box a { color: #fff; font-size: 1.25rem; font-weight: 800; text-decoration: none; }
.hero-overlay-card .address-box { font-size: 11px; color: #94a3b8; margin: 0.5rem 0 0; line-height: 1.45; }
@media (max-width: 640px) {
  .hero-frame { aspect-ratio: 3 / 2; }
}

.media-frame {
  border-radius: 1.25rem; overflow: hidden; background: #e2e8f0;
  box-shadow: var(--shadow); aspect-ratio: 16 / 10;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.media-frame:hover img { transform: scale(1.04); }

.split-media {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 900px) {
  .split-media { grid-template-columns: 1fr 1fr; }
  .split-media.reverse { direction: rtl; }
  .split-media.reverse > * { direction: ltr; }
}
.split-media-body { display: flex; flex-direction: column; justify-content: center; }

.page-hero-banner {
  display: grid; gap: 2rem; align-items: center; margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
  .page-hero-banner { grid-template-columns: 1.1fr 0.9fr; text-align: left; }
  .page-hero-banner .page-hero-text { text-align: left; }
}
.page-hero-banner .page-hero-text { text-align: center; }
.page-hero-banner .media-frame { max-height: 320px; aspect-ratio: 16 / 11; }

.case-study-img-wrap { margin: -1.75rem -1.75rem 1rem; border-radius: 1rem 1rem 0 0; overflow: hidden; aspect-ratio: 16 / 9; }
.case-study-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.contact-split { display: grid; gap: 1.5rem; }
@media (min-width: 900px) {
  .contact-split { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* Cards */
.card {
  background: var(--surface); border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .card-grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.eyebrow {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  border: 1px solid #c7d2fe; padding: 0.3rem 0.85rem; border-radius: 999px; display: inline-block;
}

/* Checker */
.checker-wrap { max-width: 56rem; margin: 0 auto; }
.checker {
  background: var(--surface); border-radius: 1.25rem; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid #e2e8f0;
}
.checker-head {
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
  color: #fff; padding: 2rem 1.5rem; text-align: center;
}
.checker-head h2 { color: #fff; margin: 0.5rem 0; font-size: 1.5rem; }
.checker-tabs {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
  padding: 1rem 1.5rem; background: #f8fafc; border-bottom: 1px solid #e2e8f0;
}
.tab-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tab-btn {
  padding: 0.55rem 1rem; font-size: 0.75rem; font-weight: 700; border: 2px solid #e2e8f0;
  background: #fff; border-radius: 999px; cursor: pointer; transition: all var(--transition);
}
.tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.checker-form { padding: 1.5rem; }
@media (min-width: 768px) { .checker-form { padding: 2rem; } }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) {
  .form-grid { grid-template-columns: repeat(6, 1fr); }
  .col-2 { grid-column: span 2; }
  .col-4 { grid-column: span 4; }
  .col-3 { grid-column: span 3; }
  .col-1 { grid-column: span 1; }
}
label {
  display: block; font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: #475569; margin-bottom: 0.35rem;
}
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 2px solid #e2e8f0; border-radius: 0.65rem;
  font-size: 1rem; font-family: inherit; transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.consent-box { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 0.75rem; padding: 1rem; font-size: 11px; }
.error-msg {
  color: #dc2626; font-size: 0.8rem; font-weight: 600; background: #fef2f2;
  border: 1px solid #fecaca; padding: 0.65rem; border-radius: 0.5rem;
}
.provider-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 768px) { .provider-grid { grid-template-columns: 1fr 1fr; } }
.provider-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.provider-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.provider-card-body { padding: 1.25rem; }
.provider-card h4 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.provider-card .tag {
  font-size: 10px; text-transform: uppercase; font-weight: 700;
  background: #f1f5f9; padding: 0.2rem 0.5rem; border-radius: 4px;
}
.provider-actions {
  display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0.85rem 1.25rem;
  background: #f8fafc; border-top: 1px solid #e2e8f0; justify-content: space-between; align-items: center;
}
.loading { animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

.faq-item {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem; padding: 1.35rem;
  margin-bottom: 1rem; transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item h4 { margin: 0 0 0.5rem; font-size: 1rem; }

/* Footer */
.site-footer { background: linear-gradient(180deg, #0f172a 0%, #020617 100%); color: #94a3b8; padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer h3 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.footer-brand { color: #fff !important; }
.footer-blurb { font-size: 13px; margin-top: 0.5rem; line-height: 1.6; }
.footer-address { font-size: 13px; line-height: 1.6; margin: 0; }
.footer-phone-label { font-size: 11px; margin: 1rem 0 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-phone { color: #fff !important; font-size: 1.35rem !important; font-weight: 800 !important; text-decoration: none !important; }
.footer-phone:hover { color: #93c5fd !important; }
.footer-email a { color: #60a5fa; font-size: 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: #94a3b8; text-decoration: none; font-size: 0.875rem; transition: color var(--transition); }
.site-footer a:hover { color: #fff; }
.legal-box {
  background: rgba(0,0,0,0.35); border: 1px solid #334155; border-radius: 0.75rem;
  padding: 1.25rem; font-size: 11px; line-height: 1.65;
}
.footer-bottom {
  border-top: 1px solid #1e293b; padding-top: 1.5rem; margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.75rem;
}

/* Sticky call FAB */
.sticky-call-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem 0.85rem 1rem;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(22, 163, 74, 0.5);
  text-decoration: none !important;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeInUp 0.5s ease 0.5s forwards;
  opacity: 0;
}
.sticky-call-fab:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.55);
  color: #fff !important;
}
.sticky-call-pulse {
  position: absolute; inset: 0; border-radius: 999px;
  background: #22c55e; animation: pulseRing 2s ease-out infinite; z-index: -1;
}
.sticky-call-icon { width: 22px; height: 22px; flex-shrink: 0; }
.sticky-call-label { white-space: nowrap; }
@media (max-width: 480px) {
  .sticky-call-fab { padding: 1rem; border-radius: 50%; width: 58px; height: 58px; justify-content: center; }
  .sticky-call-label { display: none; }
  .sticky-call-icon { width: 26px; height: 26px; }
}

/* Cookie — above FAB */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: #0f172a; color: #cbd5e1;
  padding: 1rem; z-index: 400; border-top: 1px solid #334155; display: none;
}
.cookie-banner.show { display: block; animation: fadeInUp 0.35s ease; }
body.cookie-visible .sticky-call-fab { bottom: 5.5rem; }
.cookie-inner {
  max-width: 80rem; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.cookie-inner p { margin: 0; font-size: 0.8rem; flex: 1; min-width: 200px; }
.cookie-inner a { color: #60a5fa; }

/* Utilities */
.prose { max-width: 65ch; }
.prose h3 { font-size: 1.1rem; border-left: 4px solid var(--primary); padding-left: 0.75rem; margin-top: 1.5rem; }
.provider-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.provider-badges span {
  background: #fff; border: 1px solid #e2e8f0; padding: 0.4rem 0.9rem;
  border-radius: 999px; font-size: 0.75rem; font-weight: 700;
  transition: transform var(--transition), border-color var(--transition);
}
.provider-badges span:hover { transform: translateY(-2px); border-color: #93c5fd; }
.blog-card {
  display: block; background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem;
  padding: 1.5rem; text-decoration: none !important; color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #93c5fd; color: inherit; }
.alert-box { background: #fffbeb; border: 1px solid #fde68a; padding: 1rem; border-radius: 0.75rem; font-size: 0.85rem; }
.dark-box { background: linear-gradient(135deg, #0f172a, #1e293b); color: #e2e8f0; padding: 1.5rem; border-radius: 1rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.filter-btn {
  padding: 0.55rem 1rem; font-size: 0.75rem; font-weight: 700; border: 2px solid #e2e8f0;
  background: #fff; border-radius: 999px; cursor: pointer; transition: all var(--transition);
}
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.contact-office-card {
  background: linear-gradient(145deg, #0f172a, #1e3a5f);
  color: #fff; border-radius: 1.25rem; padding: 2rem; text-align: center;
}
.contact-office-card .address { font-size: 14px; color: #94a3b8; margin: 1rem 0; line-height: 1.6; }
