/* ==========================================
   R.K. SRIVASTAVA & ASSOCIATES
   About Us Page — CSS v3.0
   Mobile-First | Fully Responsive | Optimized
   ========================================== */

/* ======= GOOGLE FONTS ======= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&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;
  --text-dark:   #0B1F3A;
  --text-mid:    #3D5068;
  --text-muted:  #6B7C93;
  --border:      rgba(201,153,43,0.18);
  --border-light:rgba(0,0,0,0.07);
  --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.14);
  --shadow-xl:   0 28px 80px rgba(11,31,58,0.18);
  --shadow-gold: 0 8px 24px rgba(201,153,43,0.22);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-serif:  'Playfair Display', serif;
  --font-sans:   'DM Sans', sans-serif;
}

/* ======= RESET ======= */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:var(--font-sans);
  background:var(--cream);
  color:var(--text-dark);
  line-height:1.7;
  overflow-x:hidden;
}
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }

/* ======= TYPOGRAPHY ======= */
h1,h2,h3,h4,h5 { font-family:var(--font-serif); line-height:1.25; font-weight:700; }
h1 { font-size:clamp(1.8rem,4vw,3.5rem); }
h2 { font-size:clamp(1.5rem,3vw,2.5rem); }
h3 { font-size:clamp(1.05rem,2vw,1.3rem); }

.section-label {
  font-size:0.68rem; font-weight:600; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--gold);
  background:var(--gold-pale); padding:0.28rem 0.9rem;
  border-radius:50px; margin-bottom:0.7rem; display:inline-block;
}
.section-title { color:var(--navy); margin-bottom:0.85rem; font-weight:800; }
.section-subtitle { font-size:0.98rem; color:var(--text-muted); max-width:580px; margin:0 auto; }

/* ======= CONTAINER ======= */
.container { max-width:1240px; margin:0 auto; padding:0 1.1rem; }
@media(min-width:600px){ .container { padding:0 1.5rem; } }
@media(min-width:1280px){ .container { padding:0 2rem; } }

/* ======= UTILITIES ======= */
.text-center { text-align:center; }
.text-gold   { color:var(--gold); }
.section-head { margin-bottom:2.5rem; }

/* ======= BUTTONS ======= */
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  gap:0.45rem; padding:0.75rem 1.5rem; border-radius:50px;
  font-family:var(--font-sans); font-weight:500; font-size:0.88rem;
  text-decoration:none; transition:var(--transition);
  cursor:pointer; border:none; white-space:nowrap;
}
.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 10px 24px rgba(201,153,43,0.4); }
.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-small { padding:0.45rem 1.1rem; font-size:0.8rem; }
.btn-large { padding:0.9rem 2rem; font-size:1rem; }

/* ======= FLOATING BUTTONS ======= */
.whatsapp-float {
  position:fixed; bottom:1.5rem; right:1.5rem;
  z-index:9999; display:flex; flex-direction:column;
  align-items:flex-end; gap:0.6rem;
}
.whatsapp-btn {
  width:54px; height:54px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,0.4);
  text-decoration:none; transition:var(--transition);
  animation:pulse-wa 2.5s infinite;
}
.whatsapp-btn:hover { transform:scale(1.1); }
.whatsapp-btn svg { width:27px; height:27px; fill:white; }
.call-float {
  width:44px; height:44px; background:var(--gold); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; box-shadow:var(--shadow-gold); transition:var(--transition);
}
.call-float:hover { transform:scale(1.1); background:var(--gold-light); }
.call-float svg { width:20px; height:20px; fill:white; }
@keyframes pulse-wa {
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)}
  50%{box-shadow:0 4px 30px rgba(37,211,102,0.7),0 0 0 8px rgba(37,211,102,0.1)}
}

/* Sticky Desktop CTA */
.sticky-cta {
  position:fixed; bottom:1.5rem; left:1.5rem;
  z-index:999; display:flex; gap:0.5rem;
}
.sticky-cta .btn { box-shadow:var(--shadow-md); font-size:0.8rem; padding:0.6rem 1.1rem; }
@media(max-width:1023px){ .sticky-cta { display:none; } }

/* ======= NAVBAR ======= */
.navbar {
  position:fixed; top:0; left:0; right:0;
  z-index:1000; padding:0.85rem 0;
  transition:var(--transition); background:transparent;
}
.navbar.scrolled {
  background:var(--navy-dark);
  box-shadow:0 4px 24px rgba(0,0,0,0.18);
  padding:0.5rem 0;
  backdrop-filter:blur(12px);
}
.nav-inner {
  display:flex; align-items:center;
  justify-content:space-between; gap:1rem;
}
.nav-logo { display:flex; align-items:center; gap:0.65rem; text-decoration:none; flex-shrink:0; }
.logo-icon {
  width:42px; height:42px; background:var(--gold); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-serif); font-size:1.1rem; font-weight:900; color:var(--white); flex-shrink:0;
}
.logo-text .firm-name { font-family:var(--font-serif); font-size:0.9rem; 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.15rem; }
.nav-menu > li { position:relative; }
.nav-menu > li > a {
  display:block; padding:0.5rem 0.8rem; color:rgba(255,255,255,0.85);
  font-size:0.87rem; font-weight:500; border-radius:7px; 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.4rem); left:0;
  background:var(--white); border-radius:var(--radius);
  box-shadow:var(--shadow-lg); min-width:230px; padding:0.45rem;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:var(--transition); border:1px solid var(--border); z-index:100;
}
.dropdown a {
  display:block; padding:0.6rem 0.9rem; color:var(--text-dark);
  font-size:0.83rem; border-radius:7px; transition:var(--transition); font-weight:500;
}
.dropdown a:hover { background:var(--gold-pale); color:var(--gold); }
.nav-cta { margin-left:0.4rem; padding:0.55rem 1.1rem; font-size:0.83rem; }
.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:0.4rem; background:none; border:none; z-index:1001;
}
.hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:var(--transition); }

/* ======= BREADCRUMBS ======= */
.breadcrumbs {
  background:var(--navy-dark); padding:4.5rem 0 0.75rem;
  font-size:0.8rem; color:rgba(255,255,255,0.5);
}
.breadcrumbs a { color:var(--gold-light); text-decoration:none; }
.breadcrumbs a:hover { text-decoration:underline; }
.breadcrumbs .current { color:rgba(255,255,255,0.7); }

/* ======= PAGE HEADER ======= */
.page-header {
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-dark) 100%);
  padding:2rem 0 4rem; position:relative; overflow:hidden; text-align:center;
}
.page-header::before {
  content:''; position:absolute; top:-60px; right:-60px;
  width:400px; height:400px; border-radius:50%;
  background:var(--gold); opacity:0.05;
}
.page-header::after {
  content:''; position:absolute; bottom:-80px; left:-40px;
  width:300px; height:300px; border-radius:50%;
  background:var(--gold); opacity:0.03;
}
.page-header h1 { color:var(--white); position:relative; z-index:1; margin-bottom:0.6rem; }
.page-header p { color:rgba(255,255,255,0.65); font-size:1rem; position:relative; z-index:1; max-width:560px; margin:0 auto; }

/* Page header jump links */
.page-jump-links {
  position:relative; z-index:2;
  display:flex; gap:0.6rem; justify-content:center; flex-wrap:wrap;
  margin-top:1.5rem;
}
.jump-link {
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
  color:rgba(255,255,255,0.8); padding:0.35rem 0.9rem; border-radius:50px;
  font-size:0.76rem; font-weight:500; transition:var(--transition); white-space:nowrap;
}
.jump-link:hover { background:var(--gold); border-color:var(--gold); color:var(--white); }

/* ======= SECTIONS ======= */
section { padding:4rem 0; }

/* ======= FOUNDER SECTION ======= */
.founder-section { background:linear-gradient(135deg,var(--cream) 0%,var(--white) 100%); }

.founder-layout {
  display:grid; grid-template-columns:380px 1fr; gap:3rem; align-items:start;
}

/* Founder Card */
.founder-card {
  background:var(--white); border-radius:var(--radius-xl);
  overflow:hidden; box-shadow:var(--shadow-lg);
  transition:var(--transition); position:relative;
  border:1px solid var(--border);
}
.founder-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light),var(--gold)); z-index:1;
}
.founder-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-xl); }

.founder-image-wrapper {
  position:relative; overflow:hidden;
  background:linear-gradient(160deg,#1a3560 0%,#0d2240 100%);
  min-height:340px; display:flex; align-items:flex-end; justify-content:center;
}
.founder-image {
  width:100%; height:100%; object-fit:cover; object-position:top;
  position:absolute; inset:0;
  transition:transform 0.5s ease;
}
.founder-card:hover .founder-image { transform:scale(1.04); }

/* SVG Illustrated Lawyer Placeholder */
.founder-svg-placeholder {
  width:100%; height:100%; min-height:340px;
  display:flex; align-items:flex-end; justify-content:center;
  position:relative;
}
.founder-image-badge {
  position:absolute; bottom:14px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:var(--navy-dark);
  padding:0.3rem 1.1rem; border-radius:50px; font-size:0.72rem;
  font-weight:700; white-space:nowrap; letter-spacing:0.06em;
  text-transform:uppercase; box-shadow:0 4px 12px rgba(201,153,43,0.4); z-index:2;
}

.founder-details {
  padding:1.75rem 1.75rem 1.5rem; text-align:center;
}
.founder-name { font-size:1.6rem; font-weight:800; color:var(--navy); margin-bottom:0.2rem; }
.founder-title { color:var(--gold); font-weight:600; font-size:0.95rem; margin-bottom:0.4rem; }
.founder-qual { font-size:0.82rem; color:var(--text-mid); margin-bottom:0.9rem; }
.founder-tags { display:flex; justify-content:center; gap:0.5rem; flex-wrap:wrap; margin-bottom:1rem; }
.founder-tag {
  background:var(--gold-pale); padding:0.22rem 0.75rem; border-radius:50px;
  font-size:0.7rem; font-weight:500; color:var(--gold-dark);
}
.signature {
  font-family:var(--font-serif); font-size:1.4rem; color:var(--gold);
  font-style:italic; border-top:2px solid var(--gold);
  display:inline-block; padding-top:0.6rem; margin-bottom:1.1rem;
}
.founder-action-btns { display:flex; gap:0.6rem; justify-content:center; flex-wrap:wrap; }

/* Founder Bio */
.founder-bio { }
.founder-vision-quote {
  font-size:clamp(1.3rem,2.5vw,1.75rem); font-weight:700; color:var(--navy);
  line-height:1.3; margin-bottom:1.25rem; font-family:var(--font-serif);
  position:relative; padding-left:1.75rem;
}
.founder-vision-quote::before {
  content:'"'; position:absolute; left:0; top:-0.3rem;
  font-size:3.5rem; color:var(--gold); opacity:0.28; font-family:var(--font-serif); line-height:1;
}
.bio-text { color:var(--text-mid); line-height:1.85; margin-bottom:0.85rem; font-size:0.95rem; }

.specializations {
  display:grid; grid-template-columns:1fr 1fr; gap:0.5rem; margin:1.25rem 0;
}
.spec-item {
  display:flex; align-items:center; gap:0.5rem;
  font-size:0.83rem; color:var(--text-mid);
}
.spec-dot { width:7px; height:7px; background:var(--gold); border-radius:50%; flex-shrink:0; }

.founder-stats {
  display:flex; gap:2rem; flex-wrap:wrap;
  padding-top:1.5rem; border-top:1px solid var(--border); margin-top:1.25rem;
}
.founder-stat .num {
  font-size:2rem; font-weight:800; color:var(--gold);
  font-family:var(--font-serif); display:block; line-height:1;
}
.founder-stat .label { font-size:0.72rem; color:var(--text-muted); margin-top:0.2rem; display:block; }

/* ======= MILESTONE SECTION ======= */
.milestone-section { background:var(--cream); }
.milestone-layout { display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; }

.timeline-intro h3 { margin-bottom:0.85rem; }
.timeline-intro p { color:var(--text-mid); line-height:1.85; font-size:0.93rem; margin-bottom:0.7rem; }

.milestone-timeline { padding-left:0; }
.milestone-item {
  position:relative; padding-bottom:1.75rem;
  padding-left:2rem; border-left:2px solid var(--gold);
  transition:var(--transition);
}
.milestone-item:last-child { padding-bottom:0; }
.milestone-item::before {
  content:''; position:absolute; left:-8px; top:2px;
  width:14px; height:14px; background:var(--gold); border-radius:50%;
  transition:var(--transition);
}
.milestone-item:hover { transform:translateX(6px); }
.milestone-item:hover::before { transform:scale(1.4); background:var(--gold-light); }
.milestone-year { font-weight:800; color:var(--gold); font-size:1rem; margin-bottom:0.2rem; display:block; }
.milestone-heading { font-weight:700; color:var(--navy); font-size:0.92rem; margin-bottom:0.15rem; }
.milestone-desc { font-size:0.82rem; color:var(--text-muted); line-height:1.6; }

/* ======= MISSION VISION VALUES ======= */
.mvv-section { background:var(--white); }
.mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.mvv-card {
  text-align:center; padding:2rem 1.5rem; background:var(--white);
  border-radius:var(--radius-lg); border:1px solid var(--border);
  transition:var(--transition);
}
.mvv-card:hover { transform:translateY(-6px); border-color:var(--gold); box-shadow:var(--shadow-md); }
.mvv-icon {
  width:68px; height:68px; background:var(--gold-pale); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.25rem; transition:var(--transition);
}
.mvv-card:hover .mvv-icon { background:var(--gold); }
.mvv-icon svg { width:30px; height:30px; fill:var(--gold); transition:var(--transition); }
.mvv-card:hover .mvv-icon svg { fill:var(--white); }
.mvv-title { font-size:1.2rem; font-weight:700; color:var(--navy); margin-bottom:0.85rem; }
.mvv-text { color:var(--text-mid); line-height:1.7; font-size:0.88rem; }
.mvv-list { list-style:none; padding:0; margin-top:0.85rem; }
.mvv-list li {
  padding:0.35rem 0; color:var(--text-mid); font-size:0.84rem;
  border-bottom:1px dashed var(--border); display:flex; align-items:center; gap:0.5rem;
}
.mvv-list li:last-child { border-bottom:none; }
.mvv-list li::before { content:'✦'; color:var(--gold); font-size:0.65rem; flex-shrink:0; }

/* ======= PRACTICE AREAS ======= */
.practice-section { background:var(--cream); }
.practice-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.practice-card {
  background:var(--white); border-radius:var(--radius); padding:1.5rem;
  border:1px solid var(--border); transition:var(--transition);
  position:relative; overflow:hidden;
}
.practice-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  transform:scaleX(0); transition:var(--transition); transform-origin:left;
}
.practice-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:transparent; }
.practice-card:hover::after { transform:scaleX(1); }
.practice-icon { font-size:2rem; margin-bottom:0.75rem; display:block; }
.practice-card h4 { font-size:1rem; color:var(--navy); margin-bottom:0.4rem; }
.practice-card p { font-size:0.82rem; color:var(--text-muted); line-height:1.6; }

/* ======= CERTIFICATIONS ======= */
.cert-section { background:var(--gold-pale); }
.cert-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:1.1rem; }
.cert-card {
  background:var(--white); border-radius:var(--radius); padding:1.25rem 1rem;
  text-align:center; transition:var(--transition); border:1px solid var(--border);
}
.cert-card:hover { transform:translateY(-5px); border-color:var(--gold); box-shadow:var(--shadow-md); }
.cert-icon { font-size:2.2rem; margin-bottom:0.6rem; display:inline-block; }
.cert-title { font-weight:700; color:var(--navy); margin-bottom:0.2rem; font-size:0.88rem; }
.cert-desc { font-size:0.72rem; color:var(--text-muted); line-height:1.5; }

/* ======= TEAM SECTION ======= */
.team-section { background:var(--white); }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.team-card {
  background:var(--white); border-radius:var(--radius-lg);
  overflow:hidden; border:1px solid var(--border);
  transition:var(--transition); box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column;
}
.team-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-lg); border-color:transparent; }
.team-image-wrapper {
  background:linear-gradient(160deg,var(--navy) 0%,var(--navy-dark) 100%);
  padding:1.75rem 1.75rem 1.25rem; display:flex; flex-direction:column; align-items:center;
}
.team-avatar {
  width:100px; height:100px; background:var(--gold-pale); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:2.8rem;
  border:3px solid var(--gold); transition:var(--transition); margin-bottom:0.75rem;
}
.team-card:hover .team-avatar { transform:scale(1.06); border-color:var(--gold-light); }
.team-badge {
  background:rgba(201,153,43,0.18); border:1px solid rgba(201,153,43,0.3);
  color:var(--gold-light); font-size:0.68rem; font-weight:600;
  padding:0.2rem 0.7rem; border-radius:50px; letter-spacing:0.05em; text-transform:uppercase;
}
.team-info { padding:1.25rem; flex:1; display:flex; flex-direction:column; }
.team-name { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:0.2rem; }
.team-designation { color:var(--gold); font-size:0.8rem; font-weight:500; margin-bottom:0.6rem; }
.team-bio { font-size:0.82rem; color:var(--text-mid); line-height:1.65; flex:1; margin-bottom:1rem; }
.team-specialties { display:flex; flex-wrap:wrap; gap:0.35rem; margin-bottom:0.85rem; }
.team-spec-tag {
  background:var(--gold-pale); color:var(--gold-dark);
  font-size:0.65rem; font-weight:500; padding:0.18rem 0.5rem; border-radius:4px;
}
.team-footer {
  padding:0 1.25rem 1.25rem;
  border-top:1px solid var(--border); padding-top:0.85rem;
  display:flex; gap:0.5rem;
}
.team-footer .btn { flex:1; font-size:0.76rem; padding:0.4rem 0.75rem; }

/* ======= STATS / TRUST SECTION ======= */
.stats-section {
  background:var(--navy); padding:4rem 0; position:relative; overflow:hidden;
}
.stats-section::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:380px; height:380px; border-radius:50%; background:var(--gold); opacity:0.05;
}
.stats-section::after {
  content:''; position:absolute; bottom:-60px; left:-60px;
  width:280px; height:280px; border-radius:50%; background:var(--gold); opacity:0.03;
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; position:relative; z-index:1; }
.stat-card {
  text-align:center; padding:1.75rem 1rem; background:rgba(255,255,255,0.05);
  border-radius:var(--radius-lg); border:1px solid rgba(255,255,255,0.08);
  transition:var(--transition);
}
.stat-card:hover {
  transform:translateY(-5px); background:rgba(255,255,255,0.09);
  border-color:rgba(201,153,43,0.3);
}
.stat-number {
  font-size:2.5rem; font-weight:800; color:var(--gold-light);
  font-family:var(--font-serif); display:block; line-height:1;
}
.stat-label { font-size:0.82rem; color:rgba(255,255,255,0.55); margin-top:0.5rem; display:block; }
.stat-icon { font-size:1.75rem; margin-bottom:0.5rem; display:block; }

/* ======= WHY CHOOSE US (About Version) ======= */
.why-about-section { background:var(--cream); }
.why-about-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.why-about-points { display:flex; flex-direction:column; gap:1rem; margin-top:1.25rem; }
.why-about-item { display:flex; gap:0.85rem; align-items:flex-start; }
.why-icon-box {
  width:38px; height:38px; background:var(--gold-pale); border-radius:8px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.why-icon-box svg { width:18px; height:18px; fill:var(--gold); }
.why-about-item h4 { font-size:0.9rem; font-weight:600; color:var(--navy); margin-bottom:0.15rem; font-family:var(--font-sans); }
.why-about-item p { font-size:0.82rem; color:var(--text-muted); line-height:1.6; }

.comparison-box {
  background:var(--white); border-radius:var(--radius-lg);
  border:1px solid var(--border); overflow:hidden;
  box-shadow:var(--shadow-md);
}
.comparison-header {
  background:var(--navy); padding:1rem 1.5rem; text-align:center;
}
.comparison-header h4 { color:var(--gold-light); font-family:var(--font-sans); font-size:0.95rem; font-weight:600; }
.comparison-table { width:100%; border-collapse:collapse; }
.comparison-table th {
  background:var(--gold-pale); padding:0.65rem 1rem;
  font-size:0.8rem; font-weight:600; color:var(--navy);
  text-align:left; border-bottom:1px solid var(--border);
}
.comparison-table td {
  padding:0.65rem 1rem; font-size:0.8rem; color:var(--text-mid);
  border-bottom:1px solid var(--border-light);
}
.comparison-table tr:last-child td { border-bottom:none; }
.comparison-table .check { color:#1D9E75; font-weight:700; }
.comparison-table .cross { color:#dc3545; }
.comparison-table .highlight-col { background:rgba(201,153,43,0.06); font-weight:600; color:var(--navy); }

/* ======= TESTIMONIALS ======= */
.testimonials-section { background:var(--white); }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.testimonial-card {
  background:var(--cream); border-radius:var(--radius);
  padding:1.5rem; border:1px solid var(--border); transition:var(--transition);
}
.testimonial-card:hover { box-shadow:var(--shadow-sm); border-color:var(--gold); }
.stars { color:var(--gold); font-size:0.95rem; margin-bottom:0.6rem; }
.testimonial-card blockquote { font-size:0.87rem; color:var(--text-mid); line-height:1.7; margin-bottom:1rem; font-style:italic; }
.reviewer { display:flex; align-items:center; gap:0.65rem; }
.reviewer-avatar {
  width:38px; height:38px; background:var(--navy); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-serif); font-size:0.85rem; font-weight:700;
  color:var(--gold-light); flex-shrink:0;
}
.reviewer-name { font-weight:600; font-size:0.88rem; color:var(--navy); }
.reviewer-role { font-size:0.74rem; color:var(--text-muted); }

/* ======= CTA SECTION ======= */
.cta-section {
  background:var(--navy); padding:4rem 0;
  position:relative; overflow:hidden; text-align:center;
}
.cta-section::before {
  content:''; position:absolute; top:-50%; left:50%; transform:translateX(-50%);
  width:600px; height:600px; border-radius:50%; border:1px solid rgba(201,153,43,0.08);
}
.cta-section h2 { color:var(--white); margin-bottom:0.75rem; position:relative; z-index:1; }
.cta-section p { color:rgba(255,255,255,0.6); max-width:500px; margin:0 auto 1.75rem; position:relative; z-index:1; font-size:0.95rem; }
.cta-actions { display:flex; gap:0.85rem; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }

/* ======= CONTACT BAR ======= */
.contact-bar { background:var(--gold-pale); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:1rem 0; }
.contact-bar-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:0.75rem; }
.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.82rem; color:var(--text-dark); text-decoration:none; }
.contact-info-item svg { width:14px; height:14px; fill:var(--gold); flex-shrink:0; }
.contact-info-item:hover { color:var(--gold); }
.contact-bar-btns { display:flex; gap:0.5rem; flex-wrap:wrap; }

/* ======= FOOTER ======= */
.footer { background:var(--navy-dark); padding:3.5rem 0 0; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:2rem; margin-bottom:2.5rem; }
.footer-brand p { color:rgba(255,255,255,0.45); font-size:0.82rem; margin-top:0.75rem; line-height:1.7; max-width:250px; }
.footer-socials { display:flex; gap:0.55rem; margin-top:1rem; }
.social-btn {
  width:32px; height:32px; border-radius:7px; background:rgba(255,255,255,0.06);
  display:flex; align-items:center; justify-content:center; text-decoration:none;
  transition:var(--transition); border:1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background:var(--gold); border-color:var(--gold); }
.social-btn svg { width:14px; height:14px; fill:rgba(255,255,255,0.65); }
.social-btn:hover svg { fill:var(--white); }
.footer-col h4 { font-family:var(--font-sans); font-size:0.75rem; font-weight:700; color:var(--gold-light); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:0.9rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.45rem; }
.footer-col ul li a { color:rgba(255,255,255,0.45); text-decoration:none; font-size:0.8rem; transition:var(--transition); display:inline-block; }
.footer-col ul li a:hover { color:var(--gold-light); transform:translateX(4px); }
.footer-contact-item { display:flex; gap:0.5rem; align-items:flex-start; margin-bottom:0.6rem; }
.footer-contact-item svg { width:13px; height:13px; fill:var(--gold); flex-shrink:0; margin-top:3px; }
.footer-contact-item span, .footer-contact-item a { font-size:0.76rem; color:rgba(255,255,255,0.5); text-decoration:none; 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:1rem 0; }
.footer-bottom-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:0.6rem; }
.footer-bottom p { font-size:0.72rem; color:rgba(255,255,255,0.3); }
.footer-bottom-links { display:flex; gap:1.1rem; flex-wrap:wrap; }
.footer-bottom-links a { font-size:0.7rem; color:rgba(255,255,255,0.3); text-decoration:none; transition:var(--transition); }
.footer-bottom-links a:hover { color:var(--gold-light); }

/* ======= BACK TO TOP ======= */
.back-to-top {
  position:fixed; bottom:100px; right:1.5rem;
  width:40px; height:40px; background:var(--gold); color:white;
  border:none; border-radius:50%; cursor:pointer;
  opacity:0; visibility:hidden; transition:var(--transition);
  z-index:997; font-size:1.1rem; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-gold);
}
.back-to-top.show { opacity:1; visibility:visible; }
.back-to-top:hover { background:var(--gold-dark); transform:translateY(-3px); }

/* ======= ANIMATIONS ======= */
@keyframes fadeInUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-24px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(24px)} to{opacity:1;transform:translateX(0)} }

.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.72s ease, transform 0.72s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-24px); transition:opacity 0.72s ease, transform 0.72s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(24px); transition:opacity 0.72s ease, transform 0.72s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ======= FOCUS / A11Y ======= */
:focus-visible { outline:2px solid var(--gold); outline-offset:2px; border-radius:4px; }

/* ================================================================
   RESPONSIVE BREAKPOINTS — Mobile First
   ================================================================ */

/* 1100px — nav wraps, smaller layouts */
@media(max-width:1150px){
  .cert-grid { grid-template-columns:repeat(3,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .founder-layout { grid-template-columns:320px 1fr; gap:2.25rem; }
}

/* Tablet: 1024px — hamburger nav */
@media(max-width:1023px){
  .nav-menu { display:none; }
  .nav-cta { display:none; }
  .hamburger { display:flex; }
  .nav-menu.open {
    display:flex; flex-direction:column;
    position:fixed; top:0; left:0; right:0; bottom:0;
    background:var(--navy-dark); z-index:999;
    padding:5.5rem 1.5rem 2rem; overflow-y:auto; gap:0;
  }
  .nav-menu.open > li > a {
    padding:0.85rem 1rem; font-size:1rem;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }
  .nav-menu.open .dropdown {
    position:static; opacity:1; visibility:visible; transform:none;
    box-shadow:none; border:none; background:rgba(255,255,255,0.04);
    margin-top:0.2rem; border-radius:8px; padding:0.4rem;
  }
  .nav-menu.open .dropdown a { color:rgba(255,255,255,0.65); padding:0.6rem 1rem; }
  .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); }

  /* Layouts */
  .founder-layout { grid-template-columns:1fr; }
  .founder-card { max-width:400px; margin:0 auto; }
  .founder-image-wrapper { min-height:300px; }
  .milestone-layout { grid-template-columns:1fr; gap:2rem; }
  .mvv-grid { grid-template-columns:1fr 1fr 1fr; gap:1rem; }
  .practice-grid { grid-template-columns:repeat(2,1fr); }
  .cert-grid { grid-template-columns:repeat(3,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:1rem; }
  .why-about-grid { grid-template-columns:1fr; gap:2rem; }
  .testimonials-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .specializations { grid-template-columns:1fr; }
}

/* Tablet Portrait: 768px */
@media(max-width:768px){
  section { padding:3rem 0; }
  .page-header { padding:1.75rem 0 3rem; }

  .founder-image-wrapper { min-height:260px; }
  .founder-name { font-size:1.4rem; }
  .founder-vision-quote { font-size:1.15rem; padding-left:1.25rem; }
  .founder-vision-quote::before { font-size:2.5rem; }
  .founder-stats { gap:1.25rem; justify-content:center; }

  .mvv-grid { grid-template-columns:1fr; gap:1rem; }
  .practice-grid { grid-template-columns:1fr 1fr; }
  .cert-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .testimonials-grid { grid-template-columns:1fr; }
  .why-about-grid { grid-template-columns:1fr; }

  .contact-bar-inner { flex-direction:column; align-items:flex-start; }
  .contact-info-items { flex-direction:column; gap:0.5rem; }
  .cta-actions { flex-direction:column; align-items:center; }
  .cta-actions .btn { width:100%; max-width:300px; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom-inner { flex-direction:column; text-align:center; }
  .footer-bottom-links { justify-content:center; }
  .footer-brand p { max-width:100%; }

  .page-jump-links { gap:0.4rem; }
  .jump-link { font-size:0.7rem; padding:0.3rem 0.7rem; }
}

/* Mobile: 480px */
@media(max-width:480px){
  .container { padding:0 0.9rem; }
  .founder-action-btns { flex-direction:column; }
  .founder-action-btns .btn { width:100%; }
  .founder-tags { gap:0.35rem; }
  .founder-tag { font-size:0.64rem; padding:0.18rem 0.6rem; }
  .signature { font-size:1.2rem; }

  .practice-grid { grid-template-columns:1fr; }
  .cert-grid { grid-template-columns:1fr 1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .section-title { font-size:1.4rem; }
  .milestone-item { padding-left:1.25rem; }

  .comparison-box { overflow-x:auto; }
  .comparison-table { min-width:400px; }
}

/* Very small: 360px */
@media(max-width:360px){
  h1 { font-size:1.55rem; }
  h2 { font-size:1.25rem; }
  .cert-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr; }
}

/* ======= PRINT ======= */
@media print {
  .navbar,.whatsapp-float,.sticky-cta,.contact-bar,.cta-section,.footer,.back-to-top { display:none; }
  body { background:white; color:black; }
  .founder-card,.stat-card { box-shadow:none; border:1px solid #ccc; }
}

/* ======= REDUCED MOTION ======= */
@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;
  }
  .reveal,.reveal-left,.reveal-right { opacity:1; transform:none; }
}