/* ========================================================================== 
   AllClubCourts landing experience
   Page-specific presentation only. Existing routes and application logic are
   intentionally left unchanged.
   ========================================================================== */

:root {
  --acc-primary: #0f766e;
  --acc-primary-dark: #115e59;
  --acc-primary-soft: #ccfbf1;
  --acc-accent: #f97316;
  --acc-navy: #0b172a;
  --acc-blue: #2563eb;
  --acc-bg: #f7fafc;
  --acc-surface: #ffffff;
  --acc-surface-alt: #eef6f5;
  --acc-text: #172033;
  --acc-muted: #64748b;
  --acc-border: #dfe7ee;
  --acc-shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.07);
  --acc-shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.16);
  --acc-radius-sm: 12px;
  --acc-radius: 20px;
  --acc-radius-lg: 30px;
}

html[data-theme="dark"] {
  --acc-bg: #08111f;
  --acc-surface: #101b2c;
  --acc-surface-alt: #13263a;
  --acc-text: #ecf3fb;
  --acc-muted: #a9b7c9;
  --acc-border: #24364a;
  --acc-primary-soft: #123d3a;
  --acc-shadow-sm: 0 12px 34px rgba(0, 0, 0, 0.25);
  --acc-shadow-lg: 0 26px 80px rgba(0, 0, 0, 0.38);
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

.acc-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header ------------------------------------------------------------------ */
.acc-site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: color-mix(in srgb, var(--acc-surface) 92%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--acc-border) 82%, transparent);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(18px) saturate(150%);
}

.acc-site-header .navbar {
  min-height: 78px;
  padding: 8px 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.acc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--acc-text) !important;
  text-decoration: none;
  white-space: nowrap;
}

.acc-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.acc-brand-copy { display: grid; line-height: 1.05; }
.acc-brand-copy strong { font-size: 1.05rem; letter-spacing: -0.025em; }
.acc-brand-copy span { margin-top: 4px; color: var(--acc-muted); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.acc-site-nav { gap: 4px; }
.acc-site-nav .nav-link {
  position: relative;
  padding: 10px 12px !important;
  color: var(--acc-muted) !important;
  border-radius: 10px;
  font-weight: 650 !important;
  font-size: 0.93rem;
}

.acc-site-nav .nav-link:hover,
.acc-site-nav .nav-link.active {
  color: var(--acc-primary) !important;
  background: var(--acc-primary-soft) !important;
}

.acc-site-nav .dropdown-menu {
  min-width: 210px;
  padding: 8px !important;
  border: 1px solid var(--acc-border) !important;
  border-radius: 16px !important;
  background: var(--acc-surface) !important;
  box-shadow: var(--acc-shadow-lg) !important;
}

.acc-site-nav .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  color: var(--acc-text) !important;
  font-weight: 600;
}

.acc-site-nav .dropdown-item:hover { color: var(--acc-primary) !important; background: var(--acc-primary-soft) !important; }

.acc-header-actions { display: flex; align-items: center; gap: 9px; margin-left: 18px; }
.acc-header-link,
.acc-header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;
}

.acc-header-link { color: var(--acc-text); border: 1px solid var(--acc-border); background: var(--acc-surface); }
.acc-header-link:hover { color: var(--acc-primary); border-color: var(--acc-primary); }
.acc-header-button { color: #fff !important; border: 1px solid var(--acc-primary); background: var(--acc-primary); box-shadow: 0 9px 22px rgba(15, 118, 110, 0.22); }
.acc-header-button:hover { color: #fff !important; background: var(--acc-primary-dark); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(15, 118, 110, 0.3); }
.acc-header-button.is-accent { border-color: var(--acc-accent); background: var(--acc-accent); box-shadow: 0 9px 22px rgba(249, 115, 22, 0.2); }
.acc-header-button.is-accent:hover { background: #ea580c; }

.acc-site-header .navbar-toggler {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--acc-border);
  border-radius: 12px;
  box-shadow: none !important;
}
.acc-site-header .navbar-toggler-icon { width: 22px; height: 22px; }
html[data-theme="dark"] .acc-site-header .navbar-toggler-icon { filter: invert(1); }

/* Landing page ------------------------------------------------------------ */
.acc-home {
  color: var(--acc-text);
  background: var(--acc-bg);
  font-family: var(--ui-font, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.acc-home *, .acc-site-footer * { box-sizing: border-box; }
.acc-home a { text-underline-offset: 3px; }

.acc-section { position: relative; padding: 96px 0; }
.acc-section.is-surface { background: var(--acc-surface); border-block: 1px solid var(--acc-border); }
.acc-section.is-soft { background: linear-gradient(180deg, var(--acc-surface-alt), var(--acc-bg)); }
.acc-section.is-dark { color: #fff; background: var(--acc-navy); overflow: hidden; }

.acc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  color: var(--acc-primary-dark);
  background: var(--acc-primary-soft);
  border: 1px solid color-mix(in srgb, var(--acc-primary) 22%, transparent);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.acc-kicker i { font-size: 0.95rem; }
.acc-section.is-dark .acc-kicker,
.acc-hero .acc-kicker { color: #d9fffb; background: rgba(45, 212, 191, 0.13); border-color: rgba(94, 234, 212, 0.22); }

.acc-title {
  margin: 0;
  color: var(--acc-text);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.acc-section.is-dark .acc-title { color: #fff; }
.acc-subtitle { max-width: 690px; margin: 18px 0 0; color: var(--acc-muted); font-size: clamp(1rem, 1.5vw, 1.12rem); line-height: 1.75; }
.acc-section.is-dark .acc-subtitle { color: #b9c7da; }
.acc-section-heading { max-width: 780px; margin: 0 auto 52px; text-align: center; }
.acc-section-heading .acc-subtitle { margin-inline: auto; }

.acc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.acc-button:hover { transform: translateY(-2px); }
.acc-button-primary { color: #fff !important; background: var(--acc-primary); box-shadow: 0 13px 30px rgba(15, 118, 110, 0.3); }
.acc-button-primary:hover { color: #fff !important; background: var(--acc-primary-dark); box-shadow: 0 16px 34px rgba(15, 118, 110, 0.38); }
.acc-button-secondary { color: var(--acc-text) !important; background: var(--acc-surface); border-color: var(--acc-border); box-shadow: var(--acc-shadow-sm); }
.acc-button-secondary:hover { color: var(--acc-primary) !important; border-color: var(--acc-primary); }
.acc-button-light { color: var(--acc-navy) !important; background: #fff; box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16); }
.acc-button-outline-light { color: #fff !important; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.36); }
.acc-button-outline-light:hover { color: #fff !important; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.58); }

/* Hero */
.acc-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #081527;
  overflow: hidden;
}

.acc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 35, 0.97) 0%, rgba(7, 28, 48, 0.91) 43%, rgba(5, 28, 44, 0.54) 100%),
    url('/lib/images/landing images/iStock-1472159975 resize 1920_1280.jpg') center 44% / cover no-repeat;
}

.acc-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -130px;
  top: -180px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.2);
  filter: blur(10px);
}

.acc-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: 70px;
  padding: 105px 0 95px;
}

.acc-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.75rem, 5.5vw, 5.15rem);
  font-weight: 870;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.acc-hero-copy h1 span { color: #5eead4; }
.acc-hero-copy > p { max-width: 650px; margin: 24px 0 0; color: #d7e2ee; font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.72; }
.acc-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.acc-hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: #d3deea; font-size: 0.91rem; font-weight: 650; }
.acc-hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.acc-hero-proof i { color: #5eead4; font-size: 1.1rem; }

.acc-product-preview {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  background: rgba(255,255,255,.11);
  box-shadow: 0 32px 90px rgba(0,0,0,.38);
  backdrop-filter: blur(15px);
}

.acc-preview-window { overflow: hidden; color: var(--acc-text); background: var(--acc-surface); border-radius: 20px; box-shadow: 0 16px 50px rgba(0,0,0,.2); }
.acc-preview-topbar { display: flex; align-items: center; justify-content: space-between; padding: 15px 17px; border-bottom: 1px solid var(--acc-border); }
.acc-preview-brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 0.86rem; }
.acc-preview-brand span { width: 28px; height: 28px; display: grid; place-items: center; color: #fff; background: var(--acc-primary); border-radius: 9px; }
.acc-preview-avatar { width: 29px; height: 29px; display: grid; place-items: center; color: #fff; background: var(--acc-accent); border-radius: 50%; font-size: 0.72rem; font-weight: 800; }
.acc-preview-body { display: grid; grid-template-columns: 78px 1fr; min-height: 390px; }
.acc-preview-sidebar { display: grid; align-content: start; gap: 10px; padding: 17px 13px; background: color-mix(in srgb, var(--acc-surface-alt) 72%, var(--acc-surface)); border-right: 1px solid var(--acc-border); }
.acc-preview-sidebar span { width: 36px; height: 36px; display: grid; place-items: center; margin-inline: auto; color: var(--acc-muted); border-radius: 10px; }
.acc-preview-sidebar span.active { color: var(--acc-primary); background: var(--acc-primary-soft); }
.acc-preview-content { padding: 19px; }
.acc-preview-title { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-bottom: 16px; }
.acc-preview-title h3 { margin: 0; color: var(--acc-text); font-size: 1rem; font-weight: 800; }
.acc-preview-title small { color: var(--acc-muted); }
.acc-preview-date { padding: 6px 9px; color: var(--acc-primary-dark); background: var(--acc-primary-soft); border-radius: 8px; font-size: 0.7rem; font-weight: 800; }
.acc-preview-courts { display: grid; gap: 10px; }
.acc-court-row { display: grid; grid-template-columns: 90px repeat(3, 1fr); gap: 8px; align-items: center; }
.acc-court-name { color: var(--acc-muted); font-size: 0.72rem; font-weight: 750; }
.acc-slot { padding: 10px 5px; color: var(--acc-primary-dark); background: var(--acc-primary-soft); border: 1px solid color-mix(in srgb, var(--acc-primary) 16%, transparent); border-radius: 8px; text-align: center; font-size: 0.66rem; font-weight: 800; }
.acc-slot.is-booked { color: #7c2d12; background: #ffedd5; border-color: #fed7aa; }
html[data-theme="dark"] .acc-slot.is-booked { color: #fed7aa; background: #4b2615; border-color: #7c3e1d; }
.acc-preview-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 18px; }
.acc-preview-stat { padding: 12px 9px; border: 1px solid var(--acc-border); border-radius: 11px; background: var(--acc-surface); }
.acc-preview-stat strong { display: block; color: var(--acc-text); font-size: 1rem; }
.acc-preview-stat span { color: var(--acc-muted); font-size: 0.63rem; }
.acc-floating-note { position: absolute; right: -30px; bottom: 34px; display: flex; align-items: center; gap: 10px; width: 190px; padding: 13px; color: var(--acc-text); background: var(--acc-surface); border: 1px solid var(--acc-border); border-radius: 14px; box-shadow: var(--acc-shadow-lg); }
.acc-floating-note i { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; color: #fff; background: var(--acc-accent); border-radius: 10px; }
.acc-floating-note strong { display: block; font-size: 0.75rem; }
.acc-floating-note span { color: var(--acc-muted); font-size: 0.65rem; }

/* Metric band */
.acc-metric-band { position: relative; z-index: 4; margin-top: -42px; }
.acc-metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: var(--acc-surface); border: 1px solid var(--acc-border); border-radius: 22px; box-shadow: var(--acc-shadow-lg); }
.acc-metric { padding: 26px 25px; border-right: 1px solid var(--acc-border); }
.acc-metric:last-child { border-right: 0; }
.acc-metric strong { display: block; color: var(--acc-text); font-size: 1.55rem; font-weight: 850; letter-spacing: -0.035em; }
.acc-metric span { display: block; margin-top: 5px; color: var(--acc-muted); font-size: 0.84rem; }

/* Feature cards */
.acc-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.acc-feature-card { overflow: hidden; height: 100%; background: var(--acc-surface); border: 1px solid var(--acc-border); border-radius: var(--acc-radius); box-shadow: var(--acc-shadow-sm); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.acc-feature-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--acc-primary) 38%, var(--acc-border)); box-shadow: var(--acc-shadow-lg); }
.acc-feature-image { position: relative; height: 210px; overflow: hidden; }
.acc-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.acc-feature-card:hover .acc-feature-image img { transform: scale(1.045); }
.acc-feature-icon { position: absolute; left: 20px; bottom: -24px; width: 50px; height: 50px; display: grid; place-items: center; color: #fff; background: var(--acc-primary); border: 4px solid var(--acc-surface); border-radius: 15px; font-size: 1.35rem; box-shadow: 0 8px 20px rgba(15,118,110,.24); }
.acc-feature-body { padding: 40px 24px 27px; }
.acc-feature-body h3 { margin: 0; color: var(--acc-text); font-size: 1.22rem; font-weight: 820; letter-spacing: -0.02em; }
.acc-feature-body p { margin: 11px 0 0; color: var(--acc-muted); line-height: 1.68; }
.acc-feature-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--acc-primary); font-weight: 750; text-decoration: none; }

/* Steps */
.acc-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.acc-steps::before { content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--acc-primary), #5eead4); opacity: .35; }
.acc-step { position: relative; padding: 0 8px; text-align: center; }
.acc-step-number { position: relative; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 21px; color: #fff; background: var(--acc-primary); border: 7px solid var(--acc-surface); border-radius: 18px; box-shadow: 0 10px 25px rgba(15,118,110,.25); font-weight: 850; }
.acc-step h3 { margin: 0; color: var(--acc-text); font-size: 1.07rem; font-weight: 800; }
.acc-step p { margin: 9px 0 0; color: var(--acc-muted); font-size: 0.91rem; line-height: 1.6; }
.acc-steps-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 42px; }

/* Analytics split */
.acc-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.acc-benefit-list { display: grid; gap: 14px; margin: 28px 0 0; }
.acc-benefit { display: flex; gap: 13px; align-items: flex-start; }
.acc-benefit i { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; color: var(--acc-primary); background: var(--acc-primary-soft); border-radius: 10px; font-size: 1.1rem; }
.acc-benefit strong { display: block; margin-top: 2px; color: var(--acc-text); font-size: 0.96rem; }
.acc-benefit span { display: block; margin-top: 4px; color: var(--acc-muted); line-height: 1.55; font-size: 0.88rem; }

.acc-analytics-card { position: relative; padding: 25px; background: var(--acc-surface); border: 1px solid var(--acc-border); border-radius: var(--acc-radius-lg); box-shadow: var(--acc-shadow-lg); }
.acc-analytics-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 22px; }
.acc-analytics-head h3 { margin: 0; color: var(--acc-text); font-size: 1.05rem; font-weight: 820; }
.acc-period-chip { padding: 7px 10px; color: var(--acc-muted); background: var(--acc-surface-alt); border-radius: 9px; font-size: 0.72rem; font-weight: 750; }
.acc-analytics-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.acc-kpi { padding: 14px; background: var(--acc-surface-alt); border-radius: 13px; }
.acc-kpi span { color: var(--acc-muted); font-size: 0.7rem; }
.acc-kpi strong { display: block; margin-top: 6px; color: var(--acc-text); font-size: 1.15rem; font-weight: 850; }
.acc-chart { display: flex; align-items: end; gap: 12px; height: 190px; margin-top: 26px; padding: 18px 12px 0; border-bottom: 1px solid var(--acc-border); background-image: linear-gradient(to bottom, var(--acc-border) 1px, transparent 1px); background-size: 100% 25%; }
.acc-chart-bar { flex: 1; min-width: 18px; height: var(--h); background: linear-gradient(180deg, #2dd4bf, var(--acc-primary)); border-radius: 8px 8px 2px 2px; box-shadow: 0 8px 16px rgba(15,118,110,.15); }
.acc-chart-labels { display: grid; grid-template-columns: repeat(7, 1fr); margin-top: 9px; color: var(--acc-muted); font-size: 0.65rem; text-align: center; }

/* Capability tiles */
.acc-capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.acc-capability { padding: 25px; background: var(--acc-surface); border: 1px solid var(--acc-border); border-radius: 18px; }
.acc-capability i { width: 46px; height: 46px; display: grid; place-items: center; color: var(--acc-primary); background: var(--acc-primary-soft); border-radius: 13px; font-size: 1.25rem; }
.acc-capability h3 { margin: 18px 0 0; color: var(--acc-text); font-size: 1.03rem; font-weight: 800; }
.acc-capability p { margin: 9px 0 0; color: var(--acc-muted); font-size: 0.88rem; line-height: 1.6; }

/* Sports row */
.acc-sports { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-top: 30px; }
.acc-sport-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--acc-text); background: var(--acc-surface); border: 1px solid var(--acc-border); border-radius: 999px; font-size: 0.88rem; font-weight: 700; box-shadow: var(--acc-shadow-sm); }
.acc-sport-pill i { color: var(--acc-primary); }

/* Demo section */
.acc-demo-panel { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 58px; align-items: center; padding: 48px; overflow: hidden; background: linear-gradient(135deg, #0b172a, #103c45); border-radius: 32px; box-shadow: var(--acc-shadow-lg); }
.acc-demo-panel::after { content: ""; position: absolute; width: 420px; height: 420px; left: -200px; bottom: -290px; border-radius: 50%; background: rgba(45,212,191,.17); }
.acc-demo-copy { position: relative; z-index: 2; }
.acc-demo-copy .acc-title { color: #fff; }
.acc-demo-copy .acc-subtitle { color: #c3d1df; }
.acc-demo-points { display: grid; gap: 12px; margin-top: 27px; color: #e5edf5; }
.acc-demo-points span { display: flex; align-items: center; gap: 9px; font-weight: 650; }
.acc-demo-points i { color: #5eead4; font-size: 1.08rem; }

.acc-demo-form { position: relative; z-index: 2; padding: 30px; color: var(--acc-text); background: var(--acc-surface); border: 1px solid var(--acc-border); border-radius: 22px; box-shadow: 0 24px 60px rgba(0,0,0,.24); }
.acc-demo-form h3 { margin: 0; color: var(--acc-text); font-size: 1.35rem; font-weight: 850; letter-spacing: -0.025em; }
.acc-demo-form > p { margin: 7px 0 22px; color: var(--acc-muted); }
.acc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.acc-field { min-width: 0; }
.acc-field.is-full { grid-column: 1 / -1; }
.acc-field label { display: block; margin-bottom: 7px; color: var(--acc-text); font-size: 0.79rem; font-weight: 750; }
.acc-demo-form .form-control,
.acc-demo-form select.form-control {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--acc-text);
  background: var(--acc-surface);
  border: 1px solid var(--acc-border);
  border-radius: 10px;
  font-size: 0.9rem;
  box-shadow: none;
}
.acc-demo-form .form-control:focus { border-color: var(--acc-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--acc-primary) 16%, transparent); }
.acc-demo-form .acc-button { width: 100%; }
.lblMessage { display: block; min-height: 20px; margin-top: 13px; color: #059669; font-size: 0.88rem; font-weight: 700; }
.acc-form-note { margin-top: 12px; color: var(--acc-muted); font-size: 0.73rem; line-height: 1.5; text-align: center; }

/* Testimonials and CTA */
.acc-testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.acc-testimonial { height: 100%; padding: 30px; background: var(--acc-surface); border: 1px solid var(--acc-border); border-radius: var(--acc-radius); box-shadow: var(--acc-shadow-sm); }
.acc-testimonial > i { color: var(--acc-primary); font-size: 2rem; }
.acc-testimonial blockquote { margin: 15px 0 24px; color: var(--acc-text); font-size: 1rem; line-height: 1.78; }
.acc-person { display: flex; align-items: center; gap: 12px; }
.acc-person img { width: 49px; height: 49px; object-fit: cover; border-radius: 50%; }
.acc-person strong { display: block; color: var(--acc-text); font-size: 0.91rem; }
.acc-person span { display: block; margin-top: 3px; color: var(--acc-muted); font-size: 0.8rem; }

.acc-final-cta { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 48px 52px; color: #fff; background: linear-gradient(125deg, var(--acc-primary-dark), var(--acc-primary), #0e7490); border-radius: 28px; box-shadow: var(--acc-shadow-lg); }
.acc-final-cta h2 { margin: 0; color: #fff; font-size: clamp(1.75rem, 3vw, 2.55rem); font-weight: 850; letter-spacing: -0.04em; }
.acc-final-cta p { max-width: 650px; margin: 11px 0 0; color: #d8f5f1; line-height: 1.65; }
.acc-final-actions { display: flex; flex: 0 0 auto; gap: 10px; }

/* Footer ------------------------------------------------------------------ */
.acc-site-footer { color: #c6d2e0; background: #071323; }
.acc-footer-main { display: grid; grid-template-columns: 1.4fr .75fr .75fr 1fr; gap: 50px; padding: 68px 0 50px; }
.acc-footer-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.acc-footer-brand img { width: 58px; height: 58px; object-fit: contain; }
.acc-footer-brand strong { display: block; font-size: 1.08rem; }
.acc-footer-brand span { display: block; margin-top: 4px; color: #8fa3ba; font-size: 0.73rem; }
.acc-footer-about p { max-width: 340px; margin: 18px 0 0; color: #94a8be; line-height: 1.7; font-size: 0.9rem; }
.acc-footer-contact { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: #d7e4ef; text-decoration: none; font-weight: 650; font-size: 0.88rem; }
.acc-footer-contact:hover { color: #5eead4; }
.acc-footer-column h3 { margin: 5px 0 18px; color: #fff; font-size: 0.82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.acc-footer-links { display: grid; gap: 12px; }
.acc-footer-links a { color: #94a8be; text-decoration: none; font-size: 0.89rem; }
.acc-footer-links a:hover { color: #5eead4; }
.acc-footer-newsletter p { margin: 0 0 14px; color: #94a8be; font-size: .87rem; line-height: 1.55; }
.acc-newsletter-form { display: flex; overflow: hidden; background: #0f2034; border: 1px solid #243a51; border-radius: 12px; }
.acc-newsletter-form input { min-width: 0; width: 100%; padding: 12px 13px; color: #fff; background: transparent; border: 0; outline: 0; font-size: .86rem; }
.acc-newsletter-form button { width: 45px; flex: 0 0 45px; color: #fff; background: var(--acc-primary); border: 0; height:40px; }
.acc-footer-bottom { border-top: 1px solid #1d3045; }
.acc-footer-bottom-inner { min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 24px; color: #8297ad; font-size: .82rem; }
.acc-footer-legal { display: flex; gap: 19px; }
.acc-footer-legal a { color: #8297ad; text-decoration: none; }
.acc-footer-legal a:hover { color: #5eead4; }

.go-top { opacity:1 !important; right: 24px !important; bottom: 82px !important; width: 44px !important; height: 44px !important; display: grid !important; place-items: center; color: #fff !important; background: var(--acc-primary) !important; border-radius: 13px !important; box-shadow: 0 12px 30px rgba(15,118,110,.32) !important; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1199px) {
  .acc-header-actions { margin-left: 10px; }
  .acc-header-link, .acc-header-button { padding-inline: 12px; }
  .acc-site-nav .nav-link { padding-inline: 8px !important; }
  .acc-hero-grid { gap: 38px; }
  .acc-floating-note { right: -12px; }
}

@media (max-width: 991.98px) {
  .acc-site-header .navbar { min-height: 70px; }
  .acc-site-header .navbar-collapse { margin-top: 12px; padding: 14px; background: var(--acc-surface); border: 1px solid var(--acc-border); border-radius: 16px; box-shadow: var(--acc-shadow-lg); }
  .acc-site-nav { gap: 3px; }
  .acc-site-nav .nav-link { padding: 11px 12px !important; }
  .acc-header-actions { flex-wrap: wrap; margin: 13px 0 2px; }
  .acc-header-link, .acc-header-button { flex: 1 1 100px; }
  .acc-hero { min-height: auto; }
  .acc-hero-grid { grid-template-columns: 1fr; padding: 90px 0 110px; }
  .acc-hero-copy { max-width: 760px; }
  .acc-product-preview { max-width: 630px; width: 100%; margin-inline: auto; }
  .acc-metric-grid { grid-template-columns: 1fr 1fr; }
  .acc-metric:nth-child(2) { border-right: 0; }
  .acc-metric:nth-child(-n+2) { border-bottom: 1px solid var(--acc-border); }
  .acc-feature-grid { grid-template-columns: 1fr 1fr; }
  .acc-steps { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .acc-steps::before { display: none; }
  .acc-split { grid-template-columns: 1fr; gap: 48px; }
  .acc-capability-grid { grid-template-columns: 1fr 1fr; }
  .acc-demo-panel { grid-template-columns: 1fr; padding: 40px; }
  .acc-footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .acc-footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
  .acc-shell { width: min(100% - 28px, 1180px); }
  .acc-brand-copy span { display: none; }
  .acc-brand img { width: 48px; height: 48px; }
  .acc-section { padding: 74px 0; }
  .acc-hero-grid { padding: 76px 0 96px; }
  .acc-hero-copy h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .acc-product-preview { padding: 10px; border-radius: 22px; }
  .acc-preview-body { grid-template-columns: 58px 1fr; min-height: 350px; }
  .acc-preview-sidebar { padding-inline: 8px; }
  .acc-preview-content { padding: 14px; }
  .acc-court-row { grid-template-columns: 72px repeat(3, 1fr); gap: 5px; }
  .acc-floating-note { display: none; }
  .acc-feature-grid { grid-template-columns: 1fr; }
  .acc-feature-image { height: 235px; }
  .acc-demo-panel { padding: 30px 22px; border-radius: 24px; }
  .acc-demo-form { padding: 24px 18px; }
  .acc-testimonial-grid { grid-template-columns: 1fr; }
  .acc-final-cta { display: block; padding: 36px 27px; }
  .acc-final-actions { margin-top: 25px; flex-wrap: wrap; }
  .acc-footer-main { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .acc-footer-about, .acc-footer-newsletter { grid-column: 1 / -1; }
  .acc-footer-bottom-inner { padding: 20px 0; min-height: 0; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .acc-header-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .acc-header-link:first-child { grid-column: 1 / -1; }
  .acc-hero-actions { display: grid; }
  .acc-button { width: 100%; }
  .acc-hero-proof { display: grid; gap: 11px; }
  .acc-preview-topbar { padding: 12px; }
  .acc-preview-body { grid-template-columns: 1fr; min-height: auto; }
  .acc-preview-sidebar { display: none; }
  .acc-preview-content { padding: 13px; }
  .acc-court-row { grid-template-columns: 62px repeat(3, 1fr); }
  .acc-slot { padding: 8px 2px; font-size: .58rem; }
  .acc-preview-summary { gap: 5px; }
  .acc-preview-stat { padding: 9px 6px; }
  .acc-metric-grid { grid-template-columns: 1fr; }
  .acc-metric { border-right: 0; border-bottom: 1px solid var(--acc-border); }
  .acc-metric:last-child { border-bottom: 0; }
  .acc-steps { grid-template-columns: 1fr; }
  .acc-capability-grid { grid-template-columns: 1fr; }
  .acc-analytics-card { padding: 18px 14px; }
  .acc-analytics-kpis { grid-template-columns: 1fr; }
  .acc-form-grid { grid-template-columns: 1fr; }
  .acc-field.is-full { grid-column: auto; }
  .acc-footer-main { grid-template-columns: 1fr; }
  .acc-footer-about, .acc-footer-newsletter { grid-column: auto; }
  .acc-footer-legal { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .acc-button, .acc-header-button, .acc-feature-card, .acc-feature-image img { transition: none; }
}
