/*
Theme Name: ACM Demo Day 2026
Theme URI: https://acmwillowrun.org
Author: American Center for Mobility
Author URI: https://acmwillowrun.org
Description: Event website theme for ACM Demo Day 2026 - live demonstrations, speaking sessions, and networking at the American Center for Mobility.
Version: 2.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: demodays
Tags: one-column, custom-menu, featured-images, full-width-template, translation-ready
*/

:root {
  --acm-navy: #003A70;
  --acm-navy-dark: #002855;
  --acm-navy-darkest: #001B3D;
  --acm-blue: #0077C8;
  --acm-blue-mid: #1E5AA8;
  --acm-green: #8CC63F;
  --acm-green-dark: #7AB635;
  --color-bg: #ffffff;
  --color-card: #fafafa;
  --color-border: #e8e8e8;
  --color-text: #171717;
  --color-text-muted: #737373;
  --font-sans: 'Open Sans', sans-serif;
  --radius: 0.5rem;
  --radius-lg: 0.5625rem;
  --radius-md: 0.375rem;
  --radius-sm: 0.1875rem;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, opacity 0.2s;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--acm-navy);
  color: #fff;
  border-color: var(--acm-navy);
}

.btn-primary:hover {
  background: var(--acm-navy-dark);
}

.btn-secondary {
  background: var(--acm-green);
  color: #fff;
  border-color: var(--acm-green-dark);
}

.btn-secondary:hover {
  background: var(--acm-green-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  background: var(--color-card);
}

.btn-white {
  background: #fff;
  color: var(--acm-green);
  font-weight: 700;
  border-color: #fff;
}

.btn-white:hover {
  opacity: 0.9;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

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

.btn-ghost:hover {
  background: var(--color-card);
}

.btn-ghost.active {
  background: var(--color-card);
  border-color: var(--color-border);
}

/* =====================
   CARDS
   ===================== */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-content {
  padding: 1.5rem;
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-header + .card-content {
  padding-top: 1rem;
}

/* =====================
   BADGES
   ===================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
}

.badge-primary {
  background: var(--acm-navy);
  color: #fff;
}

.badge-green {
  background: var(--acm-green);
  color: #fff;
}

/* =====================
   HEADER / NAVIGATION
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo img {
  height: 1.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .header-logo img {
    height: 2rem;
  }
}

.header-logo-divider {
  width: 1px;
  height: 1.5rem;
  background: var(--color-border);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--color-card);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-ticket-btn {
  display: none;
}

@media (min-width: 640px) {
  .nav-ticket-btn {
    display: inline-flex;
  }
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
}

.mobile-menu-toggle:hover {
  background: var(--color-card);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 20rem;
  background: #fff;
  z-index: 100;
  padding: 2rem 1.5rem;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99;
}

.mobile-overlay.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--color-card);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: linear-gradient(135deg, #0077C8 0%, #1E5AA8 25%, #003A70 50%, #002855 75%, #001B3D 100%);
}

.hero-large {
  padding: 5rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
}

.hero-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  height: 120%;
  width: auto;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 768px) {
  .hero-watermark {
    right: 5%;
    height: 140%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, transparent 60%, rgba(0,27,61,0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  max-width: 48rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-icon {
  height: 5rem;
  width: auto;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .hero-icon {
    height: 6rem;
  }
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.8);
}

@media (min-width: 640px) {
  .hero-meta {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-meta-dot {
  display: none;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}

@media (min-width: 640px) {
  .hero-meta-dot {
    display: block;
  }
}

/* =====================
   SECTIONS
   ===================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-bg-card {
  background: var(--color-card);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.section-center {
  text-align: center;
}

/* =====================
   HIGHLIGHTS GRID
   ===================== */
.highlights-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.highlight-card {
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.highlight-card:hover {
  border-color: rgba(140, 198, 63, 0.4);
}

.highlight-card .card-content {
  padding: 2rem 1.5rem 1.5rem;
}

.highlight-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(0,58,112,0.15), rgba(140,198,63,0.2));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.highlight-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--acm-navy);
}

.highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* =====================
   SCHEDULE PREVIEW
   ===================== */
.schedule-preview {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--color-bg), rgba(0,58,112,0.05), var(--color-bg));
}

.schedule-preview .grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(90deg, var(--acm-navy) 1px, transparent 1px),
    linear-gradient(var(--acm-navy) 1px, transparent 1px);
  background-size: 60px 60px;
}

.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(140, 198, 63, 0.15);
  border: 1px solid rgba(140, 198, 63, 0.3);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--acm-navy);
}

.date-badge svg {
  width: 1rem;
  height: 1rem;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--acm-navy), var(--acm-navy), var(--acm-navy-dark));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section .orb-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(140, 198, 63, 0.3);
  border-radius: 50%;
  filter: blur(48px);
}

.cta-section .orb-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(140, 198, 63, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.cta-section .container {
  position: relative;
  z-index: 10;
}

.cta-logo {
  height: 2.5rem;
  width: auto;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .cta-logo {
    height: 3rem;
  }
}

/* =====================
   AGENDA TIMELINE
   ===================== */
.timeline {
  position: relative;
  padding-left: 0;
}

.timeline-line {
  position: absolute;
  left: 91px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

@media (min-width: 768px) {
  .timeline-line {
    left: 6rem;
  }
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .timeline-item {
    gap: 1.5rem;
  }
}

.timeline-time {
  width: 5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: right;
  padding-top: 0.75rem;
  flex-shrink: 0;
}

.timeline-dot {
  position: relative;
  flex-shrink: 0;
}

.timeline-dot::before {
  content: '';
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 1rem;
  border-radius: 50%;
  background: var(--acm-navy);
  box-shadow: 0 0 0 4px var(--color-bg);
}

.timeline-content {
  flex: 1;
}

.timeline-content .card-content {
  padding: 1rem 1.5rem;
}

.timeline-title {
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.timeline-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.timeline-details span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.timeline-description {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
}

/* =====================
   FAQ
   ===================== */
.faq-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr 3fr;
  }
}

.faq-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.faq-search {
  position: relative;
  margin-bottom: 1.5rem;
}

.faq-search input {
  width: 100%;
  padding: 0.625rem 0.75rem 0.625rem 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  background: var(--color-bg);
}

.faq-search input:focus {
  outline: 2px solid var(--acm-navy);
  outline-offset: -1px;
}

.faq-search svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--color-text-muted);
}

.faq-categories {
  list-style: none;
}

.faq-categories h3 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.faq-category-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.faq-category-heading svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--acm-navy);
}

.faq-category-heading h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-group + .faq-group {
  margin-top: 2rem;
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-text);
}

.accordion-trigger:hover {
  background: rgba(0,0,0,0.02);
}

.accordion-trigger svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--color-text-muted);
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.accordion-item.open .accordion-content {
  display: block;
}

/* =====================
   TICKETS
   ===================== */
.ticket-card {
  border: 2px solid rgba(140, 198, 63, 0.3);
}

.ticket-card-header {
  background: linear-gradient(to right, rgba(0,58,112,0.05), rgba(140,198,63,0.1));
  padding: 1.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.ticket-card-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.ticket-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--acm-navy);
  margin-top: 0.5rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--acm-navy);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-list.green li svg {
  color: var(--acm-green);
}

.checkout-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-card .card-header svg {
  width: 1.25rem;
  height: 1.25rem;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-row input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--acm-navy);
}

.checkbox-row label {
  font-size: 0.875rem;
  cursor: pointer;
}

/* =====================
   EXHIBITOR
   ===================== */
.exhibitor-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .exhibitor-intro {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.exhibitor-intro p {
  flex: 1;
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

.exhibitor-intro img {
  width: 100%;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .exhibitor-intro img {
    width: 16rem;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .exhibitor-intro img {
    width: 18rem;
  }
}

/* =====================
   EXHIBITORS GRID
   ===================== */
.exhibitors-grid {
  max-width: 42rem;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .exhibitors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.exhibitor-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: background-color 0.15s;
}

.exhibitor-logo-link:hover {
  background: rgba(0,0,0,0.03);
}

.exhibitor-logo-link img {
  height: 4rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .exhibitor-logo-link img {
    height: 5rem;
  }
}

/* =====================
   STAY INFORMED FORM
   ===================== */
.form-page {
  min-height: 80vh;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--color-bg), rgba(0,58,112,0.05), var(--color-bg));
}

.form-page .orb-1 {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 18rem;
  height: 18rem;
  background: rgba(0,58,112,0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.form-page .orb-2 {
  position: absolute;
  bottom: 5rem;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(140,198,63,0.15);
  border-radius: 50%;
  filter: blur(48px);
}

.form-header-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(0,58,112,0.2), rgba(140,198,63,0.25));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-header-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--acm-navy);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  background: var(--color-bg);
}

.form-group input:focus,
.form-group select:focus {
  outline: 2px solid var(--acm-navy);
  outline-offset: -1px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-card {
  border: 2px solid rgba(140,198,63,0.3);
}

/* =====================
   SUCCESS PAGE
   ===================== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(34,197,94,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #22c55e;
}

.success-info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  margin-bottom: 1rem;
}

.success-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0,58,112,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--acm-navy);
}

/* =====================
   CONTACT CARD
   ===================== */
.contact-card {
  background: rgba(0,0,0,0.03);
}

.contact-card .card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0,58,112,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--acm-navy);
}

.contact-card h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

/* =====================
   GRADIENT CARD
   ===================== */
.gradient-card {
  background: linear-gradient(135deg, rgba(0,58,112,0.05), rgba(140,198,63,0.1));
  border-color: rgba(140,198,63,0.2);
}

.gradient-card .card-content {
  padding: 2rem;
  text-align: center;
}

/* =====================
   DECORATIVE ORBS
   ===================== */
.section-decorated {
  position: relative;
  overflow: hidden;
}

.section-decorated .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.section-decorated .orb-navy {
  background: rgba(30,90,168,0.1);
}

.section-decorated .orb-green {
  background: rgba(140,198,63,0.15);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--acm-navy), rgba(0,58,112,0.8));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}

.footer-brand span {
  font-weight: 700;
  font-size: 1.125rem;
}

.site-footer h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer li a,
.site-footer .footer-detail {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer li a:hover {
  color: var(--color-text);
}

.site-footer .footer-detail svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(0,58,112,0.1);
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* =====================
   UTILITY
   ===================== */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-white { color: #fff; }
.italic { font-style: italic; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 32rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.inline-link {
  color: var(--acm-blue-mid);
  font-weight: 500;
}

.inline-link:hover {
  text-decoration: underline;
}

.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-green {
  background: var(--acm-green-soft);
  color: var(--acm-green-dark, #3d7a00);
}

.demodays-checkout-wrap {
  padding: 1.5rem;
}

.demodays-checkout-wrap .woocommerce-form-row,
.demodays-checkout-wrap .form-row {
  margin-bottom: 1.25rem;
}

.demodays-checkout-wrap label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.375rem;
}

.demodays-checkout-wrap label .required {
  color: #e53e3e;
}

.demodays-checkout-wrap input[type="text"],
.demodays-checkout-wrap input[type="email"],
.demodays-checkout-wrap input[type="tel"],
.demodays-checkout-wrap input[type="number"],
.demodays-checkout-wrap select,
.demodays-checkout-wrap textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: var(--text-color);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demodays-checkout-wrap input:focus,
.demodays-checkout-wrap select:focus,
.demodays-checkout-wrap textarea:focus {
  outline: none;
  border-color: var(--acm-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 200, 0.15);
}

.demodays-checkout-wrap .woocommerce-error,
.demodays-checkout-wrap .woocommerce-message,
.demodays-checkout-wrap .woocommerce-info {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  list-style: none;
}

.demodays-checkout-wrap .woocommerce-error {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  color: #c53030;
}

.demodays-checkout-wrap .woocommerce-message {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
}

.demodays-checkout-wrap .woocommerce-info {
  background: #ebf8ff;
  border: 1px solid #90cdf4;
  color: #2b6cb0;
}

.demodays-checkout-wrap #payment {
  margin-top: 1.5rem;
}

.demodays-checkout-wrap #payment .payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.demodays-checkout-wrap #payment .payment_methods li {
  padding: 1rem;
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.demodays-checkout-wrap #payment .payment_methods li label {
  margin-bottom: 0;
  cursor: pointer;
  display: inline;
  font-weight: 500;
}

.demodays-checkout-wrap #payment .payment_box {
  padding: 1rem;
  background: var(--bg-soft);
  border-radius: 0.375rem;
  margin-top: 0.75rem;
}

.demodays-checkout-wrap #payment .payment_box p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.demodays-checkout-wrap #place_order {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--acm-green);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.demodays-checkout-wrap #place_order:hover {
  background: var(--acm-green-dark, #6ba530);
}

.demodays-checkout-wrap .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.demodays-checkout-wrap .woocommerce-checkout-review-order-table th,
.demodays-checkout-wrap .woocommerce-checkout-review-order-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--card-border);
  text-align: left;
}

.demodays-checkout-wrap .woocommerce-checkout-review-order-table .order-total td,
.demodays-checkout-wrap .woocommerce-checkout-review-order-table .order-total th {
  font-weight: 700;
  font-size: 1rem;
  border-bottom: none;
}

.demodays-checkout-wrap select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: var(--text-color);
  appearance: auto;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demodays-checkout-wrap select:focus {
  outline: none;
  border-color: var(--acm-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 200, 0.15);
}

.demodays-checkout-wrap .woocommerce-billing-fields h3,
.demodays-checkout-wrap .woocommerce-additional-fields h3,
.demodays-checkout-wrap h3#order_review_heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
}

#wc-stripe-card-element,
.wc-stripe-elements-field,
.stripe-card-group {
  padding: 0.75rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#wc-stripe-card-element:focus-within,
.wc-stripe-elements-field:focus-within {
  border-color: var(--acm-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 200, 0.15);
}

.wc-stripe-error {
  color: #c53030;
  font-size: 0.8125rem;
  margin-top: 0.375rem;
}

.demodays-checkout-wrap .blockUI.blockOverlay {
  background: rgba(255, 255, 255, 0.7) !important;
}

.demodays-static-form .demodays-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.demodays-static-form .demodays-form-field {
  margin-bottom: 1.25rem;
}

.demodays-static-form .demodays-form-row .demodays-form-field {
  margin-bottom: 0;
}

.demodays-static-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.375rem;
}

.demodays-static-form label .required {
  color: #e53e3e;
}

.demodays-static-form input[type="text"],
.demodays-static-form input[type="email"],
.demodays-static-form input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: var(--text-color);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demodays-static-form input:focus {
  outline: none;
  border-color: var(--acm-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 200, 0.15);
}

.demodays-order-summary {
  background: var(--bg-soft);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.demodays-order-line {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.demodays-order-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 700;
}

.demodays-stripe-placeholder {
  margin-top: 1.5rem;
}

.demodays-stripe-field {
  padding: 0.75rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  background: #fafafa;
  min-height: 3rem;
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .demodays-static-form .demodays-form-row {
    grid-template-columns: 1fr;
  }
}

.woocommerce-checkout-review-order {
  background: var(--bg-soft);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1rem;
}
