/* ============================================================
   site.css — Global Styles
   calcolofatturaavvocato.com
   ============================================================ */

:root {
  --navy: #1a2744;
  --navy-dark: #0f1a30;
  --navy-mid: #243156;
  --gold: #c9a227;
  --gold-light: #e4bc4a;
  --cream: #f8f6f0;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f5f7;
  --gray-200: #e8eaed;
  --gray-400: #9ea5b3;
  --gray-600: #5a6072;
  --text: #1e2535;
  --text-light: #545d6e;
  --success: #16a34a;
  --danger: #dc2626;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg: 0 12px 48px rgba(26,39,68,0.18);
  --transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.25s cubic-bezier(0.4,0,0.2,1), background-color 0.25s cubic-bezier(0.4,0,0.2,1), border-color 0.25s cubic-bezier(0.4,0,0.2,1), color 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
  --sidebar-w: 300px;
}

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

body {
  font-family: 'DM Sans', sans-serif, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji';
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ============================
   HEADER
   ============================ */
.site-header {
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(201,162,39,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img  { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: block; }
.logo-main { display: block; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white); line-height: 1.1; }
.logo-sub  { display: block; font-size: 11px; font-weight: 500; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.site-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.site-nav .nav-cta {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  margin-left: 8px;
  border-radius: 99px;
}

.site-nav .nav-cta:hover { background: var(--gold-light); color: var(--navy-dark); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 6px;
}

/* ============================
   PAGE WRAPPER + LAYOUT
   ============================ */
.page-wrapper { min-height: calc(100vh - 64px); }

.content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 32px;
  align-items: start;
}

.main-content { min-width: 0; }

/* ============================
   SIDEBAR
   ============================ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 84px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.widget-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-200);
}

/* CTA Widget */
.widget-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: transparent;
  text-align: center;
}

.widget-cta-icon { margin-bottom: 12px; }
.widget-cta-icon img { width: 48px; height: 48px; border-radius: 50%; display: block; margin: 0 auto; }

.widget-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.widget-cta p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 16px; line-height: 1.6; }

.btn-sidebar-cta {
  display: block;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 99px;
  transition: var(--transition);
}

.btn-sidebar-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Mini Calc Widget */
.mini-calc { display: flex; flex-direction: column; gap: 8px; }
.mini-calc label { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

.mini-calc input {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: 'DM Sans', sans-serif, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji';
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.mini-calc input:focus { border-color: var(--navy); }

.mini-calc button {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-family: 'DM Sans', sans-serif, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji';
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.mini-calc button:hover { background: var(--navy-mid); }

.sb-result {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 12px;
  margin-top: 4px;
}

.sb-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 3px 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 4px;
}

.sb-row span { color: var(--text-light); }
.sb-row strong { color: var(--navy); font-weight: 700; }

.sb-detail-link {
  display: block;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-align: right;
  margin-top: 6px;
}

/* Rate List */
.rate-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.rate-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}

.rate-list li:last-child { border-bottom: none; }
.rate-list li span { color: var(--text-light); }
.rate-list li strong { background: var(--navy); color: var(--white); font-size: 12px; padding: 3px 10px; border-radius: 99px; }

/* Recent Posts */
.recent-posts { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.recent-posts li a {
  display: flex;
  flex-direction: column;
  padding: 9px 10px;
  border-radius: 8px;
  transition: var(--transition);
}

.recent-posts li a:hover { background: var(--gray-100); }
.rp-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
.rp-date  { font-size: 11px; color: var(--text-light); margin-top: 2px; }

/* Disclaimer */
.widget-disclaimer { background: rgba(201,162,39,0.06); border-color: rgba(201,162,39,0.25); }
.widget-disclaimer p { font-size: 12px; color: var(--text-light); line-height: 1.65; }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: var(--navy);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: attr(data-icon);
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 150px;
  opacity: 0.05;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero-badge {
  display: inline-block;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  max-width: 600px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.4; }

/* ============================
   TYPOGRAPHY UTILS
   ============================ */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.3;
}

.article-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

.article-content p { margin-bottom: 16px; line-height: 1.8; color: var(--text); }
.article-content ul, .article-content ol { margin: 0 0 16px 24px; line-height: 1.8; color: var(--text); }
.article-content li { margin-bottom: 6px; }

.article-content .highlight-box {
  background: rgba(26,39,68,0.04);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.article-content .highlight-box p { margin-bottom: 0; font-weight: 500; }

/* ============================
   CARDS & GRIDS
   ============================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.card-icon { font-size: 32px; margin-bottom: 14px; }
.card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card p  { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

/* Blog Post Card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.blog-thumb-icon {
  font-size: 64px;
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
  font-family: "Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;
}
.blog-card:hover .blog-thumb-icon { transform: scale(1.1); }
.blog-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }

.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat  { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.7; flex: 1; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; font-size: 12px; color: var(--text-light); }
.blog-card-read { color: var(--navy); font-weight: 700; font-size: 13px; }

/* ============================
   FOOTER
   ============================ */
.site-footer { background: var(--navy-dark); }

.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 28px;
}

.footer-logo strong { display: block; font-family: 'Playfair Display', serif; color: var(--white); font-size: 16px; }
.footer-logo small  { display: block; color: var(--gold); font-size: 12px; }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-badges span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom { padding: 20px 0; }

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.footer-bottom p   { font-size: 12.5px; color: rgba(255,255,255,0.55); }
.footer-disc       { font-size: 11.5px !important; }

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: 99px;
  font-family: 'DM Sans', sans-serif, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji';
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(26,39,68,0.25);
  text-decoration: none;
}

.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,39,68,0.35); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 13px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji';
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .content-area { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .site-nav { 
    display: none; 
    position: absolute; 
    top: 64px; 
    left: 0; right: 0; 
    background: var(--navy-dark); 
    flex-direction: column; 
    padding: 16px; 
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .content-area { padding: 24px 16px; }
}

/* ============================
   TABLE OF CONTENTS
   ============================ */
.toc {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 32px;
}

.toc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 12px;
}

.toc-list {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.toc-list li {
  counter-increment: toc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc-list li::before {
  content: counter(toc);
  min-width: 22px;
  height: 22px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toc-list li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
  text-decoration: none;
}

.toc-list li a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================
   POST META LINE
   ============================ */
.post-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* ============================
   POST NAV
   ============================ */
.post-nav {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
/* ============================================================
   Component styles — hero, blog grid, contact cards,
   comparison table, FAQ accordion.
   Add all new component styles here.
============================================================ */

/* ── Homepage Hero ─────────────────────────────────────────── */
.hero { background: var(--navy); padding: 44px 0 48px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(201,162,39,.11) 0%, transparent 65%); pointer-events: none; }
/*.hero::after { content: '⚖'; position: absolute; right: 4%; top: 50%; transform: translateY(-50%); font-size: 160px; opacity: .04; pointer-events: none; } */
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
.hero-badge { display: inline-block; background: rgba(201,162,39,.15); border: 1px solid rgba(201,162,39,.4); color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 99px; margin-bottom: 14px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.accent { color: var(--gold); }
.hero p { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.65; margin-bottom: 24px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline { display: inline-flex; align-items: center; background: transparent; border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8); padding: 11px 22px; border-radius: 99px; font-size: 14px; font-weight: 500; transition: var(--transition); }
.btn-outline:hover { border-color: var(--white); color: var(--white); }

/* ── Homepage Sections ─────────────────────────────────────── */
.section-calc { padding: 0; }
.home-section { margin-top: 52px; }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1.5px solid var(--gray-200); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; background: transparent; border: none; padding: 16px 20px; text-align: left; font-family: 'DM Sans', sans-serif, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji'; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: var(--transition); }
.faq-q:hover { color: var(--navy); background: var(--gray-50); }
.faq-arrow { color: var(--text-light); transition: transform .3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 4px 20px 18px; font-size: 14px; color: var(--text-light); line-height: 1.8; }

/* ── Blog Grid ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }


/* ── Contact Cards ─────────────────────────────────────────── */
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0; }
.contact-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 14px; padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: var(--transition); }
.contact-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.cc-icon { font-size: 32px; flex-shrink: 0; font-family: "Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif; }
.contact-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; margin-bottom: 10px; }
.cc-link { font-size: 13px; font-weight: 600; color: var(--gold); word-break: break-all; }
.cc-link:hover { text-decoration: underline; }

/* ── Comparison Table (regime-forfettario post) ────────────── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.comparison-table th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-size: 13px; }
.comparison-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); }
.comparison-table tr:nth-child(even) td { background: var(--gray-50); }
.comparison-table tr.total-r td { font-weight: 700; background: rgba(26,39,68,.06); }

/* ── Responsive overrides ──────────────────────────────────── */
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
