/* ============================================================
   Danhard Website Stylesheet
   Color Palette: "Industrial Authority"
   Navy #0F2B4C | Steel Blue #1E4976 | Amber #D4840A
   Warm White #F5F5F0 | Charcoal #2C2C2C
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2C2C2C;
  background-color: #F5F5F0;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #D4840A; text-decoration: none; transition: color 0.2s; }
a:hover { color: #BF7609; }
a:visited:not(.btn):not(.nav-link):not(.footer-link):not(.logo-link) { color: #1E4976; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: #2C2C2C;
}
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.875rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }

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

/* --- Utility --- */
.text-white   { color: #fff; }
.text-amber   { color: #D4840A; }
.text-navy    { color: #0F2B4C; }
.bg-navy      { background-color: #0F2B4C; }
.bg-steel     { background-color: #1E4976; }
.bg-warm      { background-color: #F5F5F0; }
.bg-white     { background-color: #fff; }

.section {
  padding: 2.5rem 0;
}
.section-sm {
  padding: 1.5rem 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn-amber {
  background-color: #D4840A;
  color: #fff;
}
.btn-amber:hover {
  background-color: #BF7609;
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  color: #fff;
}

.btn-outline-amber {
  background-color: transparent;
  color: #D4840A;
  border: 2px solid #D4840A;
}
.btn-outline-amber:hover {
  background-color: #D4840A;
  color: #fff;
}

.btn-navy {
  background-color: #0F2B4C;
  color: #fff;
}
.btn-navy:hover {
  background-color: #1E4976;
  color: #fff;
}

/* For use on light/warm-white backgrounds (e.g. the homepage hero) */
.btn-outline-navy {
  background-color: transparent;
  color: #0F2B4C;
  border: 2px solid #0F2B4C;
}
.btn-outline-navy:hover {
  background-color: rgba(15,43,76,0.08);
  color: #0F2B4C;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

/* --- Header / Navigation --- */
.top-bar {
  background-color: #0F2B4C;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
.top-bar a {
  color: rgba(255,255,255,0.9);
}
.top-bar a:hover { color: #D4840A; }
.top-bar .phone-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}
.top-bar .top-bar-divider {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.top-bar .top-bar-note {
  color: rgba(255,255,255,0.9);
}

.header {
  background-color: #0F2B4C;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: box-shadow 0.25s ease;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: padding 0.25s ease;
}

/* Shrunk state: triggered by JS after scrolling 80px */
.header.shrunk {
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header.shrunk .container {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.header.shrunk .logo-link img {
  height: 26px;
}
.header.shrunk .nav-link {
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem;
}
.header.shrunk .btn.nav-cta {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
}

.logo-link {
  display: flex;
  align-items: center;
}
.logo-link img {
  height: 50px;
  width: auto;
  transition: height 0.25s ease;
  /* Invert the black logo to white on the navy header.
     invert(1) flips black→white on a black bg; mix-blend-mode: screen
     dissolves the black bg into the navy so only the white wordmark shows. */
  filter: invert(1);
  mix-blend-mode: screen;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 0; }
.nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.2s, font-size 0.25s ease, padding 0.25s ease;
}
.nav-link:hover,
.nav-link.active { color: #D4840A; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background-color: #D4840A;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 1rem;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle::after {
  content: ' \25BE';
  font-size: 0.7em;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 260px;
  padding: 0.5rem 0;
  z-index: 1001;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: #2C2C2C;
  font-size: 0.9rem;
  transition: background-color 0.15s;
}
.dropdown-menu a:hover {
  background-color: #F5F5F0;
  color: #D4840A;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* --- Hero --- */
.hero {
  background-color: #F5F5F0;
  color: #2C2C2C;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "text  image"
    "btns  image";
  column-gap: 3rem;
  row-gap: 1.25rem;
  align-items: start;
}
.hero-text     { grid-area: text; }
.hero-img-wrap { grid-area: image; align-self: center; }
.hero-buttons  { grid-area: btns; }
.hero h1 {
  color: #0F2B4C;
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}
.hero p {
  color: #555;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-img {
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Proof Bar --- */
.proof-bar {
  background: linear-gradient(135deg, #0F2B4C, #1E4976);
  padding: 2.5rem 0;
}
.proof-bar .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.proof-item {}
.proof-number {
  font-size: 2rem;
  font-weight: 700;
  color: #D4840A;
  line-height: 1.2;
}
.proof-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
}

/* --- Application Cards --- */
.app-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.app-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.app-card-icon {
  background: linear-gradient(135deg, #0F2B4C, #1E4976);
  padding: 2rem;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-card-icon svg {
  width: 56px;
  height: 56px;
  fill: #D4840A;
}
.app-card-body {
  padding: 1.5rem;
}
.app-card-body h3 {
  margin-bottom: 0.5rem;
  color: #0F2B4C;
}
.app-card-body p {
  font-size: 0.95rem;
  color: #555;
}

/* --- Differentiators --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.diff-item {
  text-align: center;
  padding: 2rem 1.5rem;
}
.diff-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #0F2B4C, #1E4976);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff-icon svg {
  width: 28px;
  height: 28px;
  fill: #D4840A;
}
.diff-item h3 {
  color: #0F2B4C;
  margin-bottom: 0.5rem;
}
.diff-item p {
  font-size: 0.95rem;
  color: #555;
}

/* --- Social Proof --- */
.social-proof {
  background: linear-gradient(135deg, #0F2B4C, #1E4976);
  color: #fff;
}
.social-proof h2 { color: #fff; text-align: center; margin-bottom: 2rem; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.testimonial-card .attribution {
  font-size: 0.875rem;
  color: #D4840A;
  font-weight: 600;
}

/* --- CTA Section --- */
.cta-section {
  background-color: #F5F5F0;
  text-align: center;
}
.cta-section h2 { color: #0F2B4C; margin-bottom: 0.75rem; }
.cta-section p { color: #555; margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F2B4C;
  display: block;
  margin-bottom: 0.25rem;
}
.cta-phone-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, #0F2B4C, #1E4976);
  color: #fff;
  padding: 4rem 0 3rem;
}
.page-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.page-hero-text {
  flex: 1;
  min-width: 0;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 700px; }
.page-hero-icon {
  flex-shrink: 0;
  opacity: 0.92;
}
.page-hero-icon svg {
  width: 160px;
  height: 160px;
  fill: #D4840A;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}
@media (max-width: 640px) {
  .page-hero-icon { display: none; }
}
/* --- Content Sections --- */
.content-section {
  padding: 1rem 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  background-color: #D4840A;
  border-radius: 50%;
}

/* --- FAQ --- */
.faq-section { background-color: #fff; }
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-item:last-child { border-bottom: none; }
h3.faq-question { margin: 0; }
.faq-question {
  font-weight: 600;
  color: #0F2B4C;
  font-size: 1.05rem;
  cursor: pointer;
  padding: 1.5rem 2.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  position: relative;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: #C8960C;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #C8960C;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.5rem;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375rem;
  font-size: 0.9rem;
  color: #2C2C2C;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background-color: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D4840A;
  box-shadow: 0 0 0 3px rgba(212,132,10,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-required { color: #D4840A; }
.form-required-inline { color: #D4840A; font-weight: 600; }

/* --- Contact Form (Redesigned) --- */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.contact-form-intro h2 {
  font-size: 1.5rem;
  color: #0F2B4C;
  margin-bottom: 0.75rem;
}
.contact-form-intro p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-form { max-width: 100%; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --- Direct Sales Contact Cards --- */
.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.contact-direct-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 4px solid #D4840A;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-direct-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D4840A;
  margin-bottom: 0.25rem;
}
.contact-direct-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F2B4C;
  margin-bottom: 0.5rem;
}
.contact-direct-phone {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F2B4C;
  text-decoration: none;
}
.contact-direct-phone:hover { color: #D4840A; }
.contact-direct-email {
  display: block;
  font-size: 0.95rem;
  color: #D4840A;
  text-decoration: none;
}
.contact-direct-email:hover { text-decoration: underline; }

/* --- Support Banner --- */
.support-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.support-banner-action {
  text-align: center;
  flex-shrink: 0;
}

/* --- Office Info Strip --- */
.office-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.office-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 3rem;
  text-align: center;
}
.office-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}
.office-info-divider {
  width: 1px;
  height: 40px;
  background: #ccc;
}

@media (max-width: 768px) {
  .contact-form-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .support-banner { flex-direction: column; text-align: center; }
  .support-banner-text p { margin: 0 auto; }
  .office-info-strip { flex-direction: column; gap: 1.25rem; }
  .office-info-divider { display: none; }
}

/* --- Contact Info Cards --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-card h3 {
  color: #0F2B4C;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.contact-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.25rem;
}

/* --- About Page --- */
.about-highlight {
  background: #fff;
  border-left: 4px solid #D4840A;
  padding: 1.5rem 2rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.team-card h3 { color: #0F2B4C; margin-bottom: 0.25rem; }
.team-card .role { color: #D4840A; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.95rem; color: #555; }

/* --- Support Page --- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.resource-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.resource-card h3 { color: #0F2B4C; margin-bottom: 0.75rem; }
.resource-card p { font-size: 0.95rem; color: #555; }

/* --- Footer --- */
.footer {
  background-color: #0F2B4C;
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer p { font-size: 0.9rem; line-height: 1.6; }
.footer-link {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-link:hover { color: #D4840A; }
.footer-note {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 0.25rem 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* --- Schema markup (hidden) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   Sticky Mobile CTA (tap-to-call bar)
   Only visible on mobile (≤768px). Stays at bottom of screen.
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #D4840A;
  padding: 0;
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 0.875rem 1rem;
  /* Safe area for iPhones with home bar */
  padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
}
.mobile-cta-bar a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* ============================================================
   Responsive — Tablet (≤992px)
   ============================================================ */
@media (max-width: 992px) {
  .hero-content {
    display: flex;
    flex-direction: column;
  }
  .hero-text     { order: 1; }
  .hero-img-wrap { order: 2; margin-top: 1.5rem; display: block; }
  .hero-buttons  { order: 3; margin-top: 1.25rem; }
  .hero-img { width: 100%; height: auto; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Responsive — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.2rem; }

  /* Sections */
  .hero { padding: 2.5rem 0; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 2rem 0; }

  /* Top bar: simplify for mobile */
  .top-bar .container {
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
  }

  /* Header: ensure logo and hamburger stay visible */
  .header .container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .logo-link img {
    height: 38px;
  }
  .header.shrunk .logo-link img {
    height: 28px;
  }

  /* Hamburger button — visible, with generous tap target */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
  }

  /* Mobile nav panel */
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0F2B4C;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    padding: 0.75rem 0;
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { display: flex; }

  /* Nav links — larger tap targets */
  .nav-link {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-link::after { display: none; } /* Remove underline animation on mobile */
  .nav-cta {
    margin: 0.75rem 1.5rem;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Dropdowns: tap-based, not hover-based */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    padding: 0;
    min-width: 0;
    display: none; /* JS toggles via .dropdown.open */
  }
  .dropdown:hover .dropdown-menu { display: none; } /* Disable hover on mobile */
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a {
    color: rgba(255,255,255,0.85);
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .dropdown-menu a:hover {
    background-color: rgba(255,255,255,0.08);
    color: #D4840A;
  }
  .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }
  .dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Hero buttons: stack vertically */
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* CTA buttons: stack vertically */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
  }

  /* Proof bar: 2 columns */
  .proof-bar .container { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .proof-number { font-size: 1.5rem; }
  .proof-label { font-size: 0.8rem; }

  /* Application cards: single column on small phones */
  .app-cards { gap: 1rem; }

  /* Differentiators */
  .diff-grid { gap: 1rem; }
  .diff-item { padding: 1.25rem 1rem; }

  /* Testimonials */
  .testimonial-grid { gap: 1rem; }
  .testimonial-card { padding: 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer { padding-bottom: calc(1.5rem + 60px); } /* Extra space for sticky CTA bar */

  /* Page hero (inner pages) */
  .page-hero { padding: 2.5rem 0 2rem; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero p { font-size: 1rem; }

  /* CTA section phone */
  .cta-phone { font-size: 1.25rem; }

  /* Sticky mobile CTA: visible */
  .mobile-cta-bar { display: block; }

  /* Ensure all buttons have good tap targets */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }
}

/* ============================================================
   Responsive — Small phones (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.5rem; }
  .hero h1 { font-size: 1.5rem; }
  .hero { padding: 2rem 0; }

  /* Top bar: phone + email only, no "ships worldwide" */
  .top-bar .top-bar-note { display: none; }
  .top-bar .top-bar-note + .top-bar-divider { display: none; }

  /* Proof bar: still 2-col but tighter */
  .proof-bar { padding: 1.5rem 0; }
  .proof-number { font-size: 1.3rem; }

  /* App cards: enforce single column */
  .app-cards { grid-template-columns: 1fr; }

  /* Contact form adjustments */
  .contact-form-wrapper { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact direct cards */
  .contact-direct-grid { grid-template-columns: 1fr; }
  .contact-direct-phone { font-size: 1.15rem; }
}
