/* ========================================
   R.K. SRIVASTAVA & ASSOCIATES
   Complete Main Stylesheet - v3.0
   Optimized · Mobile-First · Responsive
   ======================================== */

/* ======= CRITICAL FONTS - PRELOADED ======= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ======= CSS VARIABLES ======= */
:root {
  --navy: #0B1F3A;
  --navy-dark: #071529;
  --navy-light: #132a4a;
  --gold: #C9992B;
  --gold-dark: #B8860B;
  --gold-light: #E8B84B;
  --gold-pale: #FDF5E4;
  --gold-soft: #FFF8ED;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --text-dark: #0B1F3A;
  --text-mid: #3D5068;
  --text-muted: #6B7C93;
  --text-light: #95A5B9;
  --border: rgba(201,153,43,0.2);
  --border-light: rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(11,31,58,0.06);
  --shadow-md: 0 8px 32px rgba(11,31,58,0.10);
  --shadow-lg: 0 20px 60px rgba(11,31,58,0.15);
  --shadow-xl: 0 30px 80px rgba(11,31,58,0.2);
  --shadow-gold: 0 8px 24px rgba(201,153,43,0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

/* ======= RESET & BASE ======= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
  background: var(--gold-pale);
  padding: 0.25rem 1rem;
  border-radius: 50px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ======= UTILITIES ======= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-gold-pale { background: var(--gold-pale); }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,153,43,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-small { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

/* ======= WHATSAPP & CALL FLOATS ======= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

.call-float {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201,153,43,0.4);
  transition: var(--transition);
}
.call-float:hover { transform: scale(1.1); background: var(--gold-light); }
.call-float svg { width: 22px; height: 22px; fill: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ======= STICKY CTA ======= */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  display: flex;
  gap: 0.75rem;
}
.sticky-cta .btn { box-shadow: var(--shadow-md); font-size: 0.85rem; padding: 0.7rem 1.3rem; }

/* ======= NAVBAR ======= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7,21,41,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  padding: 0.6rem 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text { line-height: 1.2; }
.logo-text .firm-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.logo-text .since {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.1rem;
  flex-wrap: nowrap;
}

.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 0.55rem 0.85rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold-light);
  background: rgba(201,153,43,0.12);
}

.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
  z-index: 100;
}
.dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--text-dark);
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-weight: 500;
}
.dropdown a:hover {
  background: var(--gold-pale);
  color: var(--gold);
  transform: translateX(4px);
}

.nav-cta { margin-left: 0.5rem; padding: 0.55rem 1.2rem; font-size: 0.83rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ======= CONTACT BAR ======= */
.contact-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,153,43,0.15);
  padding: 0.5rem 0;
}
.contact-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-info-items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.contact-info-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
.contact-info-item a { color: rgba(255,255,255,0.6); }
.contact-info-item a:hover { color: var(--gold-light); }
.contact-bar-right { display: flex; gap: 0.75rem; align-items: center; }
.contact-social {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: var(--transition);
}
.contact-social svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.5); }
.contact-social:hover { background: var(--gold); }
.contact-social:hover svg { fill: white; }

/* ======= HERO SECTION ======= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.05;
  animation: float 20s infinite ease-in-out;
}
.hero-circle-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-circle-2 { width: 300px; height: 300px; bottom: -80px; left: -50px; opacity: 0.03; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-25px) translateX(15px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,153,43,0.12);
  border: 1px solid rgba(201,153,43,0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge span { font-size: 0.78rem; color: var(--gold-light); font-weight: 500; letter-spacing: 0.04em; }
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.7s ease 0.1s both;
  line-height: 1.2;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 6px;
  background: rgba(201,153,43,0.25);
  z-index: -1;
  border-radius: 3px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.7s ease 0.2s both;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
  display: block;
}

/* ======= HERO RIGHT - LAWYER PHOTO ======= */
.hero-right {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-lawyer-profile {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,153,43,0.25);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
}

.lawyer-photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.lawyer-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201,153,43,0.12), 0 16px 40px rgba(0,0,0,0.3);
  display: block;
  margin: 0 auto;
}

/* Fallback avatar if image missing */
.lawyer-photo-fallback {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-soft));
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201,153,43,0.12), 0 16px 40px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 4rem;
  flex-direction: column;
}

.lawyer-verified-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 36px;
  height: 36px;
  background: #25D366;
  border-radius: 50%;
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lawyer-verified-badge svg { width: 16px; height: 16px; fill: white; }

.lawyer-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.lawyer-title {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.lawyer-since {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

.lawyer-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.stars { color: #FFD700; font-size: 0.9rem; letter-spacing: 2px; }
.rating-text { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.lawyer-quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.lqs-item {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  border: 1px solid rgba(201,153,43,0.12);
}
.lqs-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.lqs-label { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; display: block; }

.lawyer-cta-btns {
  display: flex;
  gap: 0.6rem;
}
.lawyer-cta-btns .btn { flex: 1; font-size: 0.82rem; padding: 0.7rem 1rem; justify-content: center; }

/* ======= TRUST BADGES ======= */
.trust-badge-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201,153,43,0.2);
  border-bottom: 1px solid rgba(201,153,43,0.2);
}

.trust-badge-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}
.trust-badge-item {
  flex: 1;
  min-width: 130px;
  padding: 0.75rem;
}
.trust-badge-icon { font-size: 2.2rem; margin-bottom: 0.6rem; display: inline-block; }
.trust-badge-item h4 { color: var(--gold-light); font-size: 0.85rem; margin-bottom: 0.2rem; font-family: var(--font-sans); font-weight: 600; }
.trust-badge-item p { color: rgba(255,255,255,0.45); font-size: 0.72rem; }

/* ======= TICKER BAR ======= */
.ticker-bar {
  background: var(--gold);
  overflow: hidden;
  padding: 0.65rem 0;
  white-space: nowrap;
}
.ticker-wrap { overflow: hidden; width: 100%; }
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 40s linear infinite;
  will-change: transform;
}
.ticker-item { font-size: 0.8rem; font-weight: 500; color: var(--navy-dark); padding: 0 1rem; }
.ticker-sep { color: var(--navy-dark); opacity: 0.4; font-size: 0.9rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ======= SERVICES GRID ======= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition-slow);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-pale), transparent);
  opacity: 0;
  transition: var(--transition-slow);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.service-card:hover .service-icon { background: var(--gold); }
.service-card:hover .service-icon svg { fill: white; }

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.83rem;
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}
.service-card:hover .service-link { transform: translateX(4px); }

/* ======= SERVICE HIGHLIGHT ======= */
.service-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  background: linear-gradient(120deg, var(--gold-pale) 0%, #fff 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.highlight-item { text-align: center; padding: 0.75rem; }
.highlight-number { font-size: 1.9rem; font-weight: 800; color: var(--gold); font-family: var(--font-serif); }

/* ======= WHY SECTION ======= */
.why-section {
  background: var(--navy);
  padding: 5rem 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
}

.why-points { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.why-point:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,153,43,0.2); }
.why-point-icon {
  width: 44px; height: 44px;
  background: rgba(201,153,43,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-point-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.why-point h4 { font-size: 1rem; color: var(--white); margin-bottom: 0.35rem; }
.why-point p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ======= WHY STATS BOX - LAWYER PHOTO ======= */
.why-stats-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,153,43,0.2);
  border-radius: 24px;
  padding: 2rem;
}

.why-lawyer-photo-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}

.why-lawyer-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201,153,43,0.12), 0 12px 30px rgba(0,0,0,0.3);
  margin: 0 auto 0.75rem;
  display: block;
}

.why-lawyer-fallback {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201,153,43,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 3.5rem;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}
.why-stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(201,153,43,0.08);
  border-radius: 10px;
  border: 1px solid rgba(201,153,43,0.15);
}
.why-stat-item .num { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 800; color: var(--gold-light); display: block; }
.why-stat-item .label { font-size: 0.73rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; display: block; }

.quote-block {
  padding: 1.1rem;
  background: rgba(201,153,43,0.08);
  border-radius: 10px;
  border: 1px solid rgba(201,153,43,0.18);
  border-left: 3px solid var(--gold);
  margin-top: 1.25rem;
}
.quote-block p { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-style: italic; line-height: 1.7; }
.quote-block cite { font-size: 0.76rem; color: var(--gold); margin-top: 0.4rem; display: block; font-weight: 500; font-style: normal; }

.why-cta-btns { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.why-cta-btns .btn { flex: 1; justify-content: center; font-size: 0.85rem; }

/* ======= PROCESS TIMELINE ======= */
.process-section { padding: 4.5rem 0; background: var(--white); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 0;
}
.timeline-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  width: 60px; height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-gold);
  border: 4px solid var(--white);
}
.timeline-step h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.timeline-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ======= TAX CALCULATOR ======= */
.calculator-section { background: var(--cream); padding: 5rem 0; }
.calc-wrapper { max-width: 900px; margin: 3rem auto 0; }
.calc-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.calc-tab {
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  background: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: var(--font-sans);
}
.calc-tab.active, .calc-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.calc-body {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.calc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.calc-form .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.calc-form label { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }
.calc-form input, .calc-form select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: var(--off-white);
  width: 100%;
}
.calc-form input:focus, .calc-form select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,153,43,0.1);
}
.calc-form .btn { grid-column: 1 / -1; }
.calc-result {
  display: none;
  gap: 1rem;
  background: var(--gold-pale);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin-top: 1rem;
}
.calc-result.show { display: grid; grid-template-columns: repeat(3, 1fr); }
.result-item { text-align: center; }
.result-label { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 0.25rem; }
.result-value { font-size: 1.4rem; font-weight: 800; color: var(--navy); font-family: var(--font-serif); }
.result-item.highlight .result-value { color: var(--gold); font-size: 1.6rem; }

/* ======= TESTIMONIALS ======= */
.testimonials-section { background: var(--navy); padding: 5rem 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition-slow);
}
.testimonial-card:hover { border-color: rgba(201,153,43,0.25); transform: translateY(-4px); }
.test-stars { color: #FFD700; font-size: 1rem; margin-bottom: 1rem; }
.test-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 0.85rem; }
.test-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: white;
  background: var(--gold); flex-shrink: 0;
}
.test-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.test-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ======= INDUSTRIES GRID ======= */
.industries-section { background: var(--white); padding: 5rem 0; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.industry-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: default;
}
.industry-item:hover { background: var(--gold-pale); border-color: var(--border); transform: translateY(-3px); }
.industry-icon { font-size: 2.2rem; margin-bottom: 0.75rem; display: block; }
.industry-item h4 { font-size: 0.88rem; color: var(--navy); font-weight: 600; }

/* ======= FAQ ======= */
.faq-section { background: var(--cream); padding: 5rem 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--border); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; padding: 1.2rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.92rem;
  font-weight: 600; color: var(--navy); text-align: left; gap: 0.75rem;
}
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--gold-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--gold); color: white; transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.active .faq-answer { display: block; }

/* ======= CTA SECTION ======= */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.cta-section h2 { color: var(--white); position: relative; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.6); position: relative; margin-bottom: 2rem; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ======= NEWSLETTER ======= */
.newsletter-section { background: var(--gold-pale); padding: 3rem 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.newsletter-text h3 { color: var(--navy); font-size: 1.3rem; }
.newsletter-text p { color: var(--text-muted); font-size: 0.88rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter-form input {
  padding: 0.8rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  min-width: 250px;
  background: var(--white);
}
.newsletter-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,153,43,0.1); }

/* ======= CONTACT SECTION ======= */
.contact-section { background: var(--white); padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(201,153,43,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-item h4 { font-size: 0.9rem; color: white; font-family: var(--font-sans); font-weight: 600; margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.contact-item a:hover { color: var(--gold-light); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: var(--off-white);
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,153,43,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ======= BACK TO TOP ======= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: white;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow-md);
  opacity: 0;
}
.back-to-top.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.back-to-top:hover { background: var(--gold); transform: translateX(-50%) translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; fill: white; }

/* ======= NOTIFICATION ======= */
.notification {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  font-size: 0.88rem;
  color: var(--text-dark);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 320px;
}
.notification.show { transform: translateX(0); }
.notification.success { border-left-color: #22C55E; }
.notification.error { border-left-color: #EF4444; }
.notification.info { border-left-color: var(--gold); }

/* ======= SECTION HEAD ======= */
.section-head { margin-bottom: 0.5rem; }

/* ======= FOOTER ======= */
.footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201,153,43,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 1rem;
}
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-btn svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.5); }
.social-btn:hover { background: var(--gold); }
.social-btn:hover svg { fill: white; }

.footer-col h4 {
  font-size: 0.9rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,153,43,0.2);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  display: block;
  padding: 0.15rem 0;
}
.footer-col ul li a:hover { color: var(--gold-light); transform: translateX(4px); }

.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.73rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.73rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ======= QUICK CONTACT FORM ======= */
.quick-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
}
.quick-contact-form input,
.quick-contact-form select,
.quick-contact-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.quick-contact-form input:focus,
.quick-contact-form select:focus,
.quick-contact-form textarea:focus {
  border-color: rgba(201,153,43,0.5);
  background: rgba(255,255,255,0.1);
}
.quick-contact-form input::placeholder,
.quick-contact-form select option { color: rgba(255,255,255,0.4); background: var(--navy-dark); }
.quick-contact-form textarea { resize: none; height: 80px; }
.quick-contact-form select { color: rgba(255,255,255,0.7); }

/* ======= ANIMATIONS ======= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ======= MOBILE NAVIGATION ======= */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .sticky-cta { display: none; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    z-index: 1001;
    padding: 5.5rem 1.5rem 2rem;
    overflow-y: auto;
    gap: 0;
  }
  .nav-menu.open > li > a {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
  }
  .nav-menu.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 0.5rem;
    margin: 0.25rem 0;
  }
  .nav-menu.open .dropdown a { color: rgba(255,255,255,0.6); padding: 0.6rem 1rem; font-size: 0.88rem; }
}

/* ======= LARGE DESKTOP ======= */
@media (min-width: 1400px) {
  .container { max-width: 1360px; }
}

/* ======= TABLET - 1024px ======= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 340px;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline::before { display: none; }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ======= TABLET - 900px ======= */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-right {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-lawyer-profile { padding: 1.75rem; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .calc-form {
    grid-template-columns: 1fr;
  }

  .calc-result.show {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-highlight {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======= TABLET - 768px ======= */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .hero { padding: 5.5rem 0 3rem; }

  .hero-right { display: none; }

  .hero-stats {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .hero-stat .num { font-size: 1.7rem; }

  .services-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .newsletter-inner { flex-direction: column; gap: 1.25rem; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { min-width: unset; width: 100%; }
  .newsletter-form .btn { width: 100%; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-highlight { grid-template-columns: repeat(2, 1fr); }

  .calc-body { padding: 1.5rem; }

  .contact-bar { display: none; }

  .why-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ======= MOBILE - 480px ======= */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 2rem); }

  .hero { padding: 5rem 0 2.5rem; }

  .hero-badge span { font-size: 0.7rem; }

  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-stats { gap: 1rem; }
  .hero-stat .num { font-size: 1.4rem; }
  .hero-stat .label { font-size: 0.68rem; }

  .trust-badge-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .trust-badge-item { padding: 0.75rem; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .service-highlight { grid-template-columns: 1fr 1fr; }
  .highlight-number { font-size: 1.5rem; }

  .calc-result.show { grid-template-columns: 1fr; gap: 0.5rem; }

  .whatsapp-float { bottom: 1rem; right: 1rem; gap: 0.5rem; }
  .whatsapp-btn { width: 48px; height: 48px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
  .call-float { width: 40px; height: 40px; }

  .footer-grid { gap: 1.5rem; }

  .faq-question { font-size: 0.85rem; }

  .form-row { grid-template-columns: 1fr; }

  .section-title { font-size: 1.5rem; }

  .logo-text .firm-name { font-size: 0.85rem; }
  .logo-text .since { display: none; }
}

/* ======= VERY SMALL - 360px ======= */
@media (max-width: 360px) {
  .container { padding: 0 0.75rem; }
  .btn { padding: 0.75rem 1.4rem; font-size: 0.85rem; }
  .hero-stat .num { font-size: 1.25rem; }
  .hero-stats { gap: 0.75rem; }
}

/* ======= PRINT ======= */
@media print {
  .navbar, .whatsapp-float, .sticky-cta, .ticker-bar, .footer, .cta-section, .back-to-top { display: none; }
  body { background: white; color: black; }
  .container { max-width: 100%; padding: 0; }
}

/* ======= ACCESSIBILITY ======= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}