/* =============================================
   KAMAL L AGRAWAL & CO. — CHARTERED ACCOUNTANTS
   Main Stylesheet | cakamalagrawal.com
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --blue:    #1A3A6B;
  --green:   #1A6B3A;
  --saffron: #E8821A;
  --white:   #FFFFFF;
  --offwhite:#F4F8F4;
  --light:   #EBF0F5;
  --text:    #2C2C2A;
  --muted:   #6B7280;
  --border:  #D1D9E0;
  --shadow:  0 2px 16px rgba(26,58,107,0.08);
  --radius:  8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  color: var(--blue);
  line-height: 1.25;
}

a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--saffron); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-align: center;
}
.btn-primary { background: var(--saffron); color: var(--white); border-color: var(--saffron); }
.btn-primary:hover { background: #d4720f; border-color: #d4720f; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: #155a30; border-color: #155a30; color: var(--white); }

/* ── NAVIGATION ── */
.navbar {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-brand-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-links .nav-cta a {
  background: var(--saffron);
  color: var(--white);
  padding: 8px 18px;
}
.nav-links .nav-cta a:hover { background: #d4720f; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--green);
  padding: 7px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: var(--white); }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0d2347 60%, #1a3a6b 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(232,130,26,0.06);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(26,107,58,0.08);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,130,26,0.15);
  border: 1px solid rgba(232,130,26,0.3);
  color: #f5a855;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}
.hero-designation {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 0.04em;
}
.hero-tagline {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 24px;
  min-width: 200px;
  text-align: center;
}
.hero-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.hero-card-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--offwhite); }
.section-blue { background: var(--blue); }
.section-dark { background: #0d2347; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}
.title-bar {
  width: 48px;
  height: 3px;
  background: var(--saffron);
  border-radius: 2px;
  margin: 14px 0 24px;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--saffron);
  opacity: 0;
  transition: opacity .25s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--offwhite);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: background .25s;
}
.service-card:hover .service-icon { background: rgba(232,130,26,0.1); }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 14px;
}
.service-link:hover { color: var(--saffron); }

/* ── VALUES / PRINCIPLES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: background .2s;
}
.value-card:hover { background: rgba(255,255,255,0.1); }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; color: var(--white); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── ABOUT SNIPPET ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-box {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 420px;
  background: linear-gradient(135deg, var(--light) 0%, var(--border) 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  gap: 12px;
  border: 2px dashed var(--border);
  overflow: hidden;
}
.about-img-placeholder .placeholder-icon { font-size: 48px; opacity: .4; }
.about-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--saffron);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232,130,26,0.3);
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.about-badge-label { font-size: 11px; margin-top: 2px; opacity: .9; }
.about-content { }
.profile-items { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.profile-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: var(--offwhite);
  border-radius: 8px;
  border-left: 3px solid var(--saffron);
}
.profile-item-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.profile-item-value { font-size: 15px; font-weight: 600; color: var(--text); margin-top: 2px; }

/* ── COMPLIANCE STRIP ── */
.compliance-strip {
  background: var(--blue);
  padding: 20px 0;
}
.compliance-items {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.compliance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
}
.compliance-item .check { color: #4ade80; font-size: 16px; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--blue) 0%, #0d2347 100%);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--saffron), var(--green));
}
.page-header h1 { color: var(--white); font-size: clamp(26px,4vw,42px); }
.page-header p { color: rgba(255,255,255,0.75); font-size: 17px; margin-top: 10px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb span { opacity: .5; }

/* ── SERVICES PAGE ── */
.services-category { margin-bottom: 56px; }
.services-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.cat-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cat-title { font-size: 22px; color: var(--blue); }
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  transition: all .2s;
}
.service-item:hover {
  border-color: var(--saffron);
  background: #fffbf6;
  box-shadow: 0 2px 8px rgba(232,130,26,0.08);
}
.service-item-dot {
  width: 8px; height: 8px;
  background: var(--saffron);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.service-item-text { color: var(--text); line-height: 1.5; }
.service-item-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── ABOUT PAGE ── */
.bio-section {
  background: var(--offwhite);
  border-radius: 12px;
  padding: 36px;
  margin: 32px 0;
  border-left: 4px solid var(--saffron);
}
.bio-section p { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
.bio-section p:last-child { margin-bottom: 0; }
.qualifications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.qual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.qual-icon { font-size: 22px; margin-top: 2px; }
.qual-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.qual-value { font-size: 15px; font-weight: 600; color: var(--text); margin-top: 2px; }

/* ── RESOURCES ── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  transition: all .2s;
}
.link-card:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.link-card-icon {
  width: 36px; height: 36px;
  background: var(--offwhite);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background .2s;
}
.link-card:hover .link-card-icon { background: rgba(255,255,255,0.15); }
.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 24px;
}
.calendar-table th {
  background: var(--blue);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
}
.calendar-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.calendar-table tr:nth-child(even) td { background: var(--offwhite); }
.calendar-table tr:hover td { background: #fffbf6; }
.date-badge {
  display: inline-block;
  background: var(--saffron);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--white);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
  user-select: none;
  gap: 12px;
}
.faq-q:hover { background: var(--offwhite); }
.faq-toggle { font-size: 20px; flex-shrink: 0; color: var(--saffron); transition: transform .2s; }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  background: var(--offwhite);
}
.faq-item.open .faq-a { max-height: 300px; padding: 16px 20px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ── CAREERS ── */
.articleship-card {
  background: linear-gradient(135deg, var(--blue) 0%, #0d2347 100%);
  border-radius: 12px;
  padding: 40px;
  color: var(--white);
  margin-bottom: 40px;
}
.articleship-card h2 { color: var(--white); margin-bottom: 12px; }
.articleship-card p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.exposure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 12px;
  margin-top: 24px;
}
.exposure-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.exposure-dot { color: var(--saffron); margin-top: 4px; flex-shrink: 0; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--blue);
  border-radius: 12px;
  padding: 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-label { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: .06em; }
.contact-value { font-size: 15px; color: var(--white); margin-top: 3px; line-height: 1.4; }
.contact-value a { color: rgba(255,255,255,0.9); }
.contact-value a:hover { color: var(--saffron); }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}
.contact-form-card h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-label .req { color: var(--saffron); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,58,107,0.08);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  background: var(--offwhite);
  padding: 12px 14px;
  border-radius: 6px;
  margin-top: 20px;
  line-height: 1.6;
  border-left: 3px solid var(--border);
}
.alert-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 20px;
}
.alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 20px;
}
.map-box {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--border);
}
.map-box iframe { width: 100%; display: block; }

/* ── FOOTER ── */
.footer {
  background: #0d2347;
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-sub { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: .08em; text-transform: uppercase; }
.footer-mno {
  display: inline-block;
  background: rgba(232,130,26,0.15);
  border: 1px solid rgba(232,130,26,0.25);
  color: #f5a855;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 10px;
  font-weight: 600;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 14px; line-height: 1.7; }
.footer h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .2s; }
.footer-links a:hover { color: var(--saffron); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-left { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 700px; }
.footer-bottom-right {
  display: flex;
  gap: 16px;
  font-size: 12px;
  flex-wrap: wrap;
}
.footer-bottom-right a { color: rgba(255,255,255,0.5); }
.footer-bottom-right a:hover { color: var(--saffron); }

/* ── NOTICE BOX ── */
.notice-box {
  background: #fffbf0;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--saffron);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: #78350f;
  margin: 20px 0;
  line-height: 1.6;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--blue); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-inner { position: relative; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { position: static; display: inline-block; margin-top: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .qualifications-grid { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; }
  .topbar-inner > *:not(:first-child) { display: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 48px; }
  .section { padding: 56px 0; }
  .compliance-items { gap: 16px; }
}
