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

:root {
  /* Professional blue and white theme */
  --bg: #ffffff;
  --panel: #f8f9fa;
  --card: #ffffff;
  --accent: #0066cc;
  --accent-dark: #004d99;
  --accent-light: #3385d6;
  --accent-soft: #66b3ff;
  --accent-alt: #00a3e0;
  --text: #1a1a1a;
  --text-dark: #0d0d0d;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --success: #10b981;
  --shadow: 0 4px 20px rgba(0, 102, 204, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 102, 204, 0.15);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 50%),
    radial-gradient(ellipse at top right, rgba(0, 102, 204, 0.05), transparent),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

header,
main,
footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.hero {
  padding: 80px 24px 96px;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 102, 204, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 0;
}

.nav-menu .mobile-cta {
  display: none !important;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--accent);
}

.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  white-space: nowrap;
  font-size: 14px;
  padding: 10px 20px;
  min-width: 120px;
  text-align: center;
  display: inline-flex;
}

.mobile-cta {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.cta-btn.primary:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
  transform: translateY(-2px);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn.ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.cta-btn.ghost:hover {
  background: var(--accent);
  color: #ffffff;
}

.cta-btn.full {
  width: 100%;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s ease;
}

.cta-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  max-width: 100%;
}

.hero-text {
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 12px 0 20px;
  line-height: 1.15;
  color: var(--text-dark);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.meta span {
  padding: 8px 12px;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 12px;
  color: var(--accent-dark);
  font-weight: 500;
}

.hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-header .tag {
  display: inline-block;
  background: rgba(0, 102, 204, 0.12);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}

.hero-card h3 {
  margin: 12px 0 14px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.card-list li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
}

.section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 12px 0 16px;
  font-size: clamp(32px, 4vw, 42px);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.section-heading p {
  color: var(--muted);
  max-width: 720px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.section-text h2 {
  margin: 10px 0 16px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.2;
}

.section-text p {
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.stat {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-value {
  color: var(--accent);
}


.stat-label {
  display: block;
  color: var(--muted);
}

.section-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.section-card.highlight {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 163, 224, 0.08) 100%);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.checklist li {
  position: relative;
  padding-left: 22px;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.pillar {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.pillar h4 {
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.pillar p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.pillar:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pillar.compact {
  background: rgba(0, 102, 204, 0.05);
  border-color: rgba(0, 102, 204, 0.15);
}

.cards.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: all 0.2s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.cards p {
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 10px 14px;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 999px;
  color: var(--accent-dark);
  font-weight: 600;
  transition: all 0.2s ease;
}

.chip:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact {
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--accent);
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-size: 14px;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-note {
  color: var(--muted);
}

.footer {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
  margin-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-inner > div:first-child {
  max-width: 400px;
}

.footer .logo {
  margin-bottom: 20px;
}

.footer .logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.footer-inner p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.footer-links a {
  color: var(--muted);
  transition: all 0.2s ease;
  font-size: 15px;
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-meta h4 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.footer-meta p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.footer-meta a {
  color: var(--accent);
  transition: color 0.2s ease;
}

.footer-meta a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom span {
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom .cta-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.footer-bottom .cta-link:hover {
  color: var(--accent-dark);
  gap: 10px;
}

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nav-menu {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 12px 16px;
  }

  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 16px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    text-align: left;
    font-size: 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .nav-menu a::after {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  .nav-cta {
    display: none !important;
  }

  .nav-menu .mobile-cta {
    display: none !important;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
  }

  .nav-menu.active .mobile-cta {
    display: inline-flex !important;
  }
}

@media (max-width: 640px) {
  /* Base spacing */
  header,
  main,
  footer {
    padding: 0 16px;
    box-sizing: border-box;
  }

  header.hero {
    padding: 70px 16px 60px;
  }

  main {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Navigation */
  .nav-container {
    padding: 12px 16px;
  }

  .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
  }

  .main-nav {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }

  /* Hero Section */
  .hero {
    padding: 70px 16px 60px;
  }

  .hero-content {
    gap: 32px;
    padding-top: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-text {
    width: 100%;
    padding: 0;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.25;
    margin: 12px 0 16px;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .lede {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    padding: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    box-sizing: border-box;
  }

  .meta {
    gap: 8px;
    font-size: 12px;
  }

  .meta span {
    padding: 6px 10px;
    font-size: 12px;
  }

  .hero-card {
    padding: 20px;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-card h3 {
    font-size: 20px;
    margin: 10px 0 12px;
    line-height: 1.3;
  }

  .card-list li {
    font-size: 14px;
    padding-left: 20px;
  }

  /* Sections */
  .section {
    padding: 60px 16px;
    scroll-margin-top: 70px;
    box-sizing: border-box;
  }

  .section-heading {
    margin-bottom: 32px;
    padding: 0;
    width: 100%;
  }

  .section-heading h2 {
    font-size: 28px;
    margin: 10px 0 14px;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .section-text {
    width: 100%;
    padding: 0;
  }

  .section-text h2 {
    font-size: 26px;
    margin: 8px 0 12px;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .section-text p {
    font-size: 15px;
    line-height: 1.7;
    padding: 0;
  }

  /* Stats Grid */
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .stat {
    padding: 16px;
  }

  .stat-value {
    font-size: 32px;
  }

  .stat-label {
    font-size: 13px;
  }

  /* Cards */
  .cards.grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
  }

  .card {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Pillars */
  .pillars {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .pillar {
    padding: 20px;
  }

  .pillar h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .pillar p {
    font-size: 14px;
  }

  .pillar.compact {
    padding: 14px 16px;
    font-size: 14px;
  }

  /* Chips */
  .chips {
    gap: 8px;
    margin-top: 20px;
  }

  .chip {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Two Column Layouts */
  .two-col {
    gap: 32px;
  }

  .section-card {
    padding: 20px;
  }

  .section-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .checklist {
    gap: 10px;
  }

  .checklist li {
    font-size: 14px;
    padding-left: 20px;
  }

  /* Contact Section */
  .contact {
    padding-bottom: 60px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
  }

  .contact-card p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .contact-form {
    padding: 20px;
    gap: 16px;
  }

  .contact-form label {
    font-size: 14px;
    gap: 8px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
  }

  .form-note {
    font-size: 12px;
    margin-top: 8px;
  }

  /* Footer */
  .footer {
    padding: 40px 16px 32px;
    margin-top: 60px;
  }

  .footer-inner {
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer .logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
  }

  .footer-inner p {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-links h4,
  .footer-meta h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 14px;
    padding: 6px 0;
  }

  .footer-meta p {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-top: 24px;
  }

  .footer-bottom span {
    font-size: 13px;
  }

  .footer-bottom .cta-link {
    font-size: 13px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  header,
  main,
  footer {
    padding: 0 12px;
    box-sizing: border-box;
  }

  header.hero {
    padding: 70px 12px 50px;
  }

  .nav-container {
    padding: 10px 12px;
  }

  .hero {
    padding: 70px 12px 50px;
  }

  .hero-content {
    padding-top: 20px;
    gap: 24px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.2;
    margin: 10px 0 14px;
  }

  .section {
    padding: 50px 12px;
  }

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

  .section-text h2 {
    font-size: 22px;
  }

  .cta-btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .hero-card {
    padding: 16px;
  }

  .card {
    padding: 16px;
  }

  .pillar {
    padding: 16px;
  }

  .contact-form {
    padding: 16px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .cta-btn,
  .nav-menu a,
  .footer-links a {
    min-height: 44px; /* iOS touch target */
    display: inline-flex;
    align-items: center;
  }

  .chip {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
}

