/* Watermark Accounting - Professional Landing Page Styles */

:root {
  --primary-blue: #003D6B;
  --primary-blue-dark: #002947;
  --accent-teal: #00A9A5;
  --accent-teal-dark: #008B88;
  --bg-light: #F8F9FB;
  --bg-white: #FFFFFF;
  --text-primary: #1A1D23;
  --text-secondary: #5A6270;
  --text-muted: #8B92A0;
  --border-light: #E5E8ED;
  --border-medium: #D1D6DF;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* add space so content does not hide behind fixed header */
body {
  padding-top: 70px; /* match header height: 64px logo + 6px padding (3px top + 3px bottom) */
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 20px; /* slight vertical padding - height driven by logo */
  width: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-left: 0;
}

.logo:hover {
  opacity: 0.85;
}

header img.logo {
  max-width: 170px;
  height: auto;
}

/* Watermark logo in header */
.watermark-logo {
  max-height: 64px;
  height: auto;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  margin-left: 0;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-image {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}

.logo-text-primary {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
}

.logo-text-secondary {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-actions .phone-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
}
.top-bar-actions .phone-link svg{
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 56px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-teal);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--accent-teal-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #F8F9FB; /* same as benefits section */
  padding: 48px 0 24px 0;
  min-height: auto;
}

/* HERO IMAGE RULES */

/* default: desktop layout */
.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
}

.hero-image-desktop {
  min-height: 420px;
  border-radius: 16px;
  background-image: url("hero.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.45;
}

.hero-image-mobile {
  display: none;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

/* Section */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Benefits Section */
#benefits {
  background-color: #F8F9FB; /* match hero section */
  padding: 24px 0 80px 0;
}

#benefits .section-header {
  text-align: left;
  margin-bottom: 60px;
}

#benefits .section-header h2 {
  margin-bottom: 16px;
}

#benefits .section-header p {
  margin: 0;
  max-width: 700px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
}

.step-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Services Section */
#services {
  background-color: var(--bg-white);
  padding: 64px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.service-card li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 12px;
}

/* Why Section */
.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 40px; /* more space between the two points on desktop */
}

/* Paired Feature Items - Desktop */
.paired-feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.paired-feature-item + .paired-feature-item {
  margin-top: 16px;
}

.paired-feature-icon-container {
  flex-shrink: 0;
}

.paired-feature-icon {
  height: 60px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* CPA logo - larger size */
.paired-feature-item:nth-child(1) .paired-feature-icon {
  height: 60px;
}

/* CPA logo alignment offset - desktop */
.paired-feature-item:nth-child(1) .paired-feature-icon-container {
  margin-left: -16px;
}

/* CRA logo - smaller size */
.paired-feature-item:nth-child(2) .paired-feature-icon {
  height: 34px;
}

.paired-feature-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 120px;
  font-weight: 700;
  color: var(--accent-teal);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.author-info strong {
  font-size: 16px;
  color: var(--primary-blue);
  font-weight: 600;
}

.author-info div {
  font-size: 14px;
  color: var(--text-secondary);
}

.author-badge {
  font-size: 13px;
  color: var(--text-muted);
}

/* Pricing Section */
#pricing {
  background-color: var(--bg-white);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.pricing-card {
  background: var(--bg-light);
  border: 2px solid var(--accent-teal);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s ease;
  flex: 0 1 360px;
}

.pricing-card.featured {
  background: var(--bg-light);
  border-color: var(--accent-teal);
  box-shadow: var(--shadow-sm);
  transform: none;
}

.pricing-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.pricing-amount {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-blue);
}

.pricing-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  height: 56px;
  padding: 0 16px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--border-medium);
  border-radius: 4px;
  background: var(--bg-white);
  color: var(--text-primary);
  transition: border-color 0.2s ease;
}

.form-group textarea {
  height: 120px;
  padding: 16px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.info-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.info-content p,
.info-content a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-content a {
  text-decoration: none;
}

.info-content a:hover {
  color: var(--accent-teal);
}

.map-embed {
  width: 100%;
  height: 250px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-top: 12px;
}

/* Footer */
footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 32px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* SVG Icons */
.icon-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Additional Services Section */
.additional-services {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.additional-services p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.additional-services ul {
  margin: 0 0 12px 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4px 24px;
}

.additional-services li {
  font-size: 15px;
  color: var(--text-secondary);
}

/* Additional Services strip */

.additional-services-features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  margin-top: 40px;
}

.additional-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 260px;
  flex: 0 1 260px;
}

.additional-service-icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}

.additional-service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-teal);
}

.additional-service-item h3 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 8px;
  text-align: center;
}

.additional-service-item p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
  max-width: 260px;
  margin: 0 auto;
  text-align: center;
}

.additional-service-item:nth-child(1) {
  animation-delay: 0s;
}

.additional-service-item:nth-child(2) {
  animation-delay: 0.05s;
}

.additional-service-item:nth-child(3) {
  animation-delay: 0.1s;
}

.additional-services-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .benefits-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-content {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 56px; /* match header height: 46px logo + 10px padding */
  }

  .container {
    padding: 0 16px;
  }

  .top-bar-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5px 12px 5px 0;
    gap: 6px;
  }

  header img.logo {
    width: 120px;
    max-width: none;
    height: auto;
  }

  .cpa-logo {
    height: 58px;
  }

  .logo {
    margin-right: auto;
  }

  .logo-image {
    width: 150px;
    height: auto;
  }

  .top-bar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .top-bar-actions .btn-outline {
    display: none;
  }

  .top-bar-actions .phone-link {
    font-size: 18px;
    white-space: nowrap;
  }

  /* mobile portrait */
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image-desktop {
    display: none;
  }

  .hero-image-mobile {
    display: block;
    margin-top: 18px;
    text-align: center;
  }

  .hero-image-mobile img {
    width: min(360px, 90%);
    height: auto;
    opacity: 0.35;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 18px;
  }

  section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  /* Left align Why section on mobile */
  #why .section-header {
    text-align: left;
  }

  #why .section-header p {
    margin: 0;
  }

  .benefits-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .pricing-card {
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* spacing for Why section on mobile */
  .trust-points {
    gap: 36px;
    padding: 0 8px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .btn {
    width: auto;
    max-width: 100%;
  }

  .top-bar .btn {
    width: auto;
    padding: 0 24px;
  }

  /* Mobile layout for Additional Services */
  .additional-services-features {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .additional-service-item {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  /* Mobile spacing improvements for trust points */
  .trust-points {
    gap: 40px;
  }

  /* Paired Feature Items - Mobile */
  .paired-feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .paired-feature-item + .paired-feature-item {
    margin-top: 16px;
  }

  .paired-feature-icon {
    height: 46px;
  }

  /* CPA logo - larger size on mobile */
  .paired-feature-item:nth-child(1) .paired-feature-icon {
    height: 46px;
  }

  /* CPA logo alignment offset - mobile */
  .paired-feature-item:nth-child(1) .paired-feature-icon-container {
    margin-left: -11px;
  }

  /* CRA logo - smaller size on mobile */
  .paired-feature-item:nth-child(2) .paired-feature-icon {
    height: 26px;
  }

  .paired-feature-text {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* mobile landscape: hide image completely so it never looks broken */
@media (max-width: 900px) and (orientation: landscape) {
  .hero-image-desktop {
    display: none;
  }

  .hero-image-mobile {
    display: none;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 52px; /* match header height: 42px logo + 10px padding */
  }

  .top-bar-content {
    padding: 5px 10px 5px 0;
    gap: 4px;
  }

  header img.logo {
    width: 105px;
    max-width: none;
    height: auto;
  }

  .cpa-logo {
    height: 50px;
  }

  .logo-image {
    width: 150px;
    height: auto;
  }

  .logo-text-container {
    display: none;
  }

  .hero {
    padding: 40px 0 60px;
    min-height: 450px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .benefit-card,
  .service-card,
  .pricing-card {
    padding: 24px 20px;
  }

  .trust-points {
    gap: 32px;
  }

  /* CPA logo - larger size on small mobile */
  .paired-feature-item:nth-child(1) .paired-feature-icon {
    height: 46px;
  }

  /* CPA logo alignment offset - small mobile */
  .paired-feature-item:nth-child(1) .paired-feature-icon-container {
    margin-left: -11px;
  }

  /* CRA logo - smaller size on small mobile */
  .paired-feature-item:nth-child(2) .paired-feature-icon {
    height: 26px;
  }

  .paired-feature-text {
    font-size: 14px;
    line-height: 1.55;
  }
}


.hero-image-mobile{
  display:none !important;
}

@media (max-width: 1024px){
  .hero-image-desktop{
    display:none !important;
  }
}

/* Phones: do not show the extra hero image under the CTA */
.hero-image-mobile{
  display: none !important;
}

/* Header phone link lock */
.phone-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#0a3d66;
  text-decoration:none;
  font-weight:700;
}

.phone-link:visited{
  color:#0a3d66;
}

.phone-link:hover{
  color:#072f4f;
}

.phone-icon{
  width:28px;
  height:28px;
  fill: currentColor;
  stroke: none;
  flex: 0 0 28px;
}

.phone-number-text{
  font-size: 18px;
  font-weight: 700;
}

/* Desktop: Add hover feedback */
@media (min-width: 769px) {
  .phone-link:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }
}

/* Remove hero imagery on mobile */
@media (max-width: 1024px){
  .hero-image-mobile,
  .hero-image-desktop{
    display:none !important;
  }
}

/* CPA Ontario badge in header */
.header-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}

.cpa-badge{
  height: 52px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  flex-shrink: 0;
}

@media (max-width: 768px){
  .header-right{
    gap: 6px;
  }
  .cpa-badge{
    height: 42px;
  }
  .watermark-logo{
    max-height: 46px;
    height: auto;
  }

  /* Mobile: Hide phone number text, show only icon */
  .phone-number-text {
    display: none;
  }

  /* Mobile: Ensure tap target is at least 44x44px */
  .phone-link {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile: Prevent header wrapping */
  .top-bar-content {
    flex-wrap: nowrap;
  }

  .header-right {
    flex-shrink: 0;
  }
}

@media (max-width: 480px){
  .header-right{
    gap: 4px;
  }
  .watermark-logo{
    max-height: 42px;
    height: auto;
  }
  .cpa-badge{
    height: 38px;
  }

  /* Phone number text already hidden at 768px, keep hidden here */
  .phone-number-text{
    display: none;
  }

  .phone-icon{
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  /* Ensure tap target remains at least 44x44px */
  .phone-link {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Desktop: ensure header aligns with hero container */
@media (min-width: 769px) {
  .watermark-logo {
    margin-left: 0;
    object-fit: contain;
    object-position: left center;
  }

  .logo {
    margin-left: 0;
  }
}

/* Desktop landscape: keep header tight and aligned */
@media (min-width: 900px) and (orientation: landscape) {
  .watermark-logo {
    /* Logo uses default max-height: 64px from desktop styles */
    margin-left: 0;
    object-fit: contain;
    object-position: left center;
  }

  .cpa-badge {
    height: 50px; /* Proportional size relative to 64px logo */
  }

  .top-bar-content {
    /* Keep header tight with slight padding */
    padding-top: 3px;
    padding-bottom: 3px;
  }

  body {
    padding-top: 70px; /* match actual header height: 64px logo + 6px padding (3px top + 3px bottom) */
  }
}
