/* ===== ALIS Technology ASC IT Services Landing Page Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #143A7A;
  --navy-deep: #0E2A5C;
  --cyan: #1B7BC8;
  --cyan-hover: #1462A2;
  --blue: #1B7BC8;
  --card-bg: #F0F5FA;
  --soft-bg: #F8FAFC;
  --border: #DCE6EE;
  --white: #FFFFFF;
  --slate: #1E293B;
  --slate-soft: #475569;
  --muted: #94A3B8;
  --green: #10B981;
  --amber: #F59E0B;
  --line: #E2E8F0;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(20, 58, 122, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(20, 58, 122, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(14, 42, 92, 0.18);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

[id] {
  scroll-margin-top: 90px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--slate);
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--navy);
}

button, input, select, textarea {
  font-family: inherit;
}

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

/* Section Styling */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(27, 123, 200, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-soft);
  max-width: 760px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--cyan);
  color: var(--white) !important;
}

.btn-primary:hover {
  background-color: #12548C;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 84, 140, 0.35);
}

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

.btn-outline:hover {
  background-color: rgba(27, 123, 200, 0.08);
  color: var(--cyan-hover);
}

.btn-light {
  background-color: var(--white);
  color: var(--navy-deep) !important;
}

.btn-light:hover {
  background-color: var(--card-bg);
  transform: translateY(-2px);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cyan);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.cta-link:hover {
  border-bottom-color: var(--cyan);
  gap: 0.75rem;
}

/* ===== 1. Sticky Header ===== */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(20, 58, 122, 0.05);
  overflow: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 4px 0;
  text-decoration: none;
}

.logo-img {
  height: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.brand-logo:hover .logo-img {
  opacity: 0.9;
  transform: scale(1.03);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ===== Submenu Dropdown Styling ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li {
  position: relative;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}
.nav-links a:hover {
  color: var(--cyan-hover);
}
.nav-links .has-sub::after {
  content: ' ▾';
  font-size: 0.75rem;
  color: var(--muted);
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 280px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(20, 58, 122, 0.12);
  padding: 0.5rem 0;
  display: none;
  z-index: 1001;
  list-style: none;
  margin: 0;
}
.nav-links > li:hover .submenu {
  display: block;
}
.submenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.submenu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.92rem;
  color: var(--slate);
  text-decoration: none;
}
.submenu a:hover {
  background: var(--soft-bg);
  color: var(--navy);
}
.submenu a strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
}
.submenu a span {
  font-size: 0.82rem;
  color: var(--slate-soft);
  font-weight: 400;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--cyan);
  transition: width 0.25s ease;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.header-phone:hover {
  color: var(--cyan);
}

.header-phone svg {
  color: var(--cyan);
}

/* ===== 2. Hero Section ===== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0A1E40 0%, #143A7A 50%, #0E2A5C 100%);
  color: var(--white);
  padding: 3.5rem 0 4.5rem 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(27, 123, 200, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* Ad Variant Switcher Bar */
.ad-variant-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
}

.ad-variant-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  padding: 0 0.4rem;
}

.variant-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.variant-btn.active {
  background: var(--cyan);
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

/* Hero Value, Service & Reliability Grid */
.hero-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-value-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: var(--transition);
}

.hero-value-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #60A5FA;
  transform: translateY(-2px);
}

.value-card-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: #60A5FA;
  line-height: 1;
  min-width: 42px;
}

.value-card-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.value-card-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.value-card-text span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.hero-cta-group {
  margin-bottom: 2rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.trust-badge-item svg {
  color: var(--green);
}

/* Hero Lead Form Card */
.hero-form-card {
  background: var(--white);
  color: var(--slate);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.3;
}

.form-header p {
  font-size: 0.88rem;
  color: var(--slate-soft);
  margin-top: 0.35rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate);
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--slate);
  background-color: var(--soft-bg);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--cyan);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 123, 200, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23143A7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.2rem;
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--cyan), #1565A6);
  font-size: 1.05rem;
  padding: 0.95rem;
}

.form-microcopy {
  font-size: 0.78rem;
  color: var(--slate-soft);
  text-align: center;
  margin-top: 0.75rem;
  font-weight: 500;
}

/* ===== 3. Trust Bar ===== */
.trust-bar-section {
  background: var(--navy-deep);
  color: var(--white);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.trust-badge-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

.trust-badge-pill svg {
  color: var(--cyan);
}

/* ===== 4. Problem / Agitation Section ===== */
.problem-section {
  background-color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.problem-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.problem-card {
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-left: 5px solid #EF4444;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}

.problem-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--slate-soft);
  line-height: 1.6;
}

.problem-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.problem-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.problem-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(14, 42, 92, 0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  border-left: 3px solid var(--cyan);
}

/* ===== 5. Solution Overview — 5-Stage Lifecycle Approach ===== */
.solution-section {
  background-color: var(--soft-bg);
  position: relative;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--phase-color, var(--cyan));
  opacity: 0.85;
  transition: height 0.25s ease, opacity 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px -6px rgba(20, 58, 122, 0.12);
  border-color: var(--phase-color, var(--cyan));
}

.solution-card:hover::before {
  height: 6px;
  opacity: 1;
}

/* Phase-specific brand colors aligned with the 2026 Infographic */
.solution-card.phase-1 { --phase-color: #00B0E5; } /* Cyan - Design */
.solution-card.phase-2 { --phase-color: #1B7BC8; } /* Blue - Construction */
.solution-card.phase-3 { --phase-color: #143A7A; } /* Navy - IT Implementation */
.solution-card.phase-4 { --phase-color: #0D9488; } /* Teal - OR Design & Setup */
.solution-card.phase-5 { --phase-color: #4F46E5; } /* Modern Indigo - 2026 Stack */

.phase-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 0.5rem;
}

.phase-number {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}

.solution-card.phase-1 .phase-number {
  background: rgba(0, 176, 229, 0.12);
  color: #0284C7;
  border: 1px solid rgba(0, 176, 229, 0.25);
}

.solution-card.phase-2 .phase-number {
  background: rgba(27, 123, 200, 0.12);
  color: #1B7BC8;
  border: 1px solid rgba(27, 123, 200, 0.25);
}

.solution-card.phase-3 .phase-number {
  background: rgba(20, 58, 122, 0.12);
  color: #143A7A;
  border: 1px solid rgba(20, 58, 122, 0.25);
}

.solution-card.phase-4 .phase-number {
  background: rgba(13, 148, 136, 0.12);
  color: #0D9488;
  border: 1px solid rgba(13, 148, 136, 0.25);
}

.solution-card.phase-5 .phase-number {
  background: rgba(79, 70, 229, 0.12);
  color: #4F46E5;
  border: 1px solid rgba(79, 70, 229, 0.25);
}

.phase-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.solution-card.phase-1 .phase-icon {
  background: linear-gradient(135deg, rgba(0, 176, 229, 0.16) 0%, rgba(0, 176, 229, 0.05) 100%);
  color: #0284C7;
  border: 1px solid rgba(0, 176, 229, 0.3);
  box-shadow: 0 4px 12px rgba(0, 176, 229, 0.1);
}

.solution-card.phase-2 .phase-icon {
  background: linear-gradient(135deg, rgba(27, 123, 200, 0.16) 0%, rgba(27, 123, 200, 0.05) 100%);
  color: #1B7BC8;
  border: 1px solid rgba(27, 123, 200, 0.3);
  box-shadow: 0 4px 12px rgba(27, 123, 200, 0.1);
}

.solution-card.phase-3 .phase-icon {
  background: linear-gradient(135deg, rgba(20, 58, 122, 0.16) 0%, rgba(20, 58, 122, 0.05) 100%);
  color: #143A7A;
  border: 1px solid rgba(20, 58, 122, 0.3);
  box-shadow: 0 4px 12px rgba(20, 58, 122, 0.1);
}

.solution-card.phase-4 .phase-icon {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.16) 0%, rgba(13, 148, 136, 0.05) 100%);
  color: #0D9488;
  border: 1px solid rgba(13, 148, 136, 0.3);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}

.solution-card.phase-5 .phase-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.16) 0%, rgba(14, 42, 92, 0.08) 100%);
  color: #4F46E5;
  border: 1px solid rgba(79, 70, 229, 0.3);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
}

.solution-card:hover .phase-icon {
  transform: scale(1.08);
}

.solution-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.solution-card .phase-timeline {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--phase-color, var(--cyan));
  margin-bottom: 0.75rem;
  display: block;
  letter-spacing: 0.02em;
}

.solution-card p {
  font-size: 0.84rem;
  color: var(--slate-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.phase-deliverables {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px dashed var(--line);
  padding-top: 0.85rem;
}

.phase-deliverables li {
  font-size: 0.75rem;
  color: var(--slate);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.35;
  font-weight: 500;
}

.phase-deliverables li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--phase-color, var(--green));
}

.solution-cta-center {
  text-align: center;
}

/* ===== 6. Key Capabilities Grid ===== */
.capabilities-section {
  background-color: var(--white);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.capability-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.capability-card:hover {
  background: var(--white);
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.capability-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.capability-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}

.capability-card p {
  font-size: 0.85rem;
  color: var(--slate-soft);
  line-height: 1.5;
}

/* ===== 7. Proof — Case Study with Numbers ===== */
.case-study-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.case-study-content .section-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #93C5FD;
}

.case-study-content .section-title {
  color: var(--white);
}

.case-study-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.03);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #60A5FA;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== 8. Client Logo Strip ===== */
.clients-section {
  background-color: var(--soft-bg);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-bottom: 1.75rem;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}

.logo-item {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-item svg {
  color: var(--cyan);
}

/* ===== 9. Why Choose Us ===== */
.differentiators-section {
  background-color: var(--white);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.diff-card {
  display: flex;
  gap: 1.25rem;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
}

.diff-card:hover {
  background: var(--white);
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
}

.diff-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

.diff-content p {
  font-size: 0.92rem;
  color: var(--slate-soft);
  line-height: 1.6;
}

/* ===== 10. FAQ Accordion ===== */
.faq-section {
  background-color: var(--soft-bg);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--cyan);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--cyan);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-body p {
  font-size: 0.95rem;
  color: var(--slate-soft);
  line-height: 1.65;
}

.faq-footer-cta {
  text-align: center;
}

/* ===== 11. Final CTA Band ===== */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #071938 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.final-cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.final-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.final-phone-link:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.reassurance-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  flex-wrap: wrap;
}

/* ===== 12. Sticky Mobile CTA Bar ===== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.65rem 0.75rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-sticky-inner {
  display: flex;
  gap: 0.5rem;
}

.mobile-btn {
  flex: 1;
  min-height: 44px;
  font-size: 0.88rem;
  padding: 0.5rem;
  font-weight: 700;
}

/* ===== 13. Minimal Footer ===== */
.minimal-footer {
  background-color: #071328;
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 0;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-compliance {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.footer-info {
  line-height: 1.7;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.footer-info a:hover {
  color: var(--white);
}

/* ===== Form Success Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 42, 92, 0.75);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.modal-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

.modal-card p {
  font-size: 0.95rem;
  color: var(--slate-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Privacy Modal */
.privacy-modal-card {
  max-width: 650px;
  text-align: left;
  max-height: 80vh;
  overflow-y: auto;
}

.privacy-modal-card h3 {
  margin-bottom: 1rem;
}

.privacy-modal-card p {
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

/* Admin Leads Dashboard Modal */
.admin-modal-card {
  max-width: 1080px;
  text-align: left;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-right: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-modal-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  border: 1px solid #BBF7D0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.admin-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  min-height: 36px;
}

/* Stats Row */
.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-stat-chip {
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  display: flex;
  flex-direction: column;
}

.stat-chip-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-soft);
  font-weight: 700;
}

.stat-chip-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-top: 0.15rem;
}

/* Filter Bar */
.admin-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.admin-search-wrapper {
  position: relative;
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
}

.admin-search-wrapper svg {
  position: absolute;
  left: 0.85rem;
  color: var(--slate-soft);
  pointer-events: none;
}

.admin-search-input {
  width: 100%;
  padding: 0.55rem 0.85rem 0.55rem 2.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--navy-deep);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.admin-search-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(27, 123, 200, 0.15);
}

.admin-stage-select {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--navy-deep);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

.admin-stage-select:focus {
  border-color: var(--cyan);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-height: 48vh;
  overflow-y: auto;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  text-align: left;
}

.leads-table th {
  background: var(--navy-deep);
  color: var(--white);
  padding: 0.75rem 0.85rem;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 5;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.leads-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
  vertical-align: middle;
}

.leads-table tr:hover {
  background: #F8FAFC;
}

.stage-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.stage-badge.greenfield {
  background: #E0F2FE;
  color: #0369A1;
}

.stage-badge.construction {
  background: #FEF3C7;
  color: #B45309;
}

.stage-badge.existing {
  background: #DCFCE7;
  color: #15803D;
}

.btn-delete-lead {
  background: transparent;
  border: 1px solid #FECACA;
  color: #DC2626;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-delete-lead:hover {
  background: #DC2626;
  color: var(--white);
}

.close-modal-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--slate-soft);
  cursor: pointer;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--navy);
  left: 0;
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.menu-toggle.active .hamburger {
  background: transparent;
}
.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1200px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(20, 58, 122, 0.12);
    gap: 0.75rem;
    z-index: 999;
  }

  .header-nav.active {
    display: flex !important;
  }

  .header-nav .nav-link {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    width: 100%;
    border-bottom: 1px solid #F1F5F9;
    color: var(--navy-deep);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.1rem;
  }
  
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .problem-grid, .case-study-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .header-phone {
    display: none;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
  
  .final-cta-section h2 {
    font-size: 1.7rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }
}

@media (max-width: 640px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .ad-variant-bar {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.5rem;
  }

  .ad-variant-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }

  .variant-btn {
    flex: 1;
    text-align: center;
    padding: 0.35rem 0.4rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .sticky-header {
    height: 60px;
  }

  .header-nav {
    top: 60px;
  }

  .logo-img {
    height: 36px !important;
    max-height: 36px !important;
  }

  .btn-header-cta {
    padding: 0.5rem 0.85rem !important;
    font-size: 0.82rem !important;
    min-height: 36px !important;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-value-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-form-card {
    padding: 1.25rem 1rem;
  }

  .solution-cta-center {
    width: 100%;
    flex-direction: column;
  }

  .solution-cta-center .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== ASC Operational Dynamics & EMR Support Section ===== */
.asc-dynamics-section {
  padding: 4rem 0;
  background: var(--soft-bg);
}
.asc-dynamics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .asc-dynamics-grid {
    grid-template-columns: 1fr;
  }
}
.dynamics-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 4px 15px rgba(20, 58, 122, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.dynamics-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}
.dynamics-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
}
.dynamics-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}
.dynamics-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.5;
}
.dynamics-list .square-bullet {
  color: var(--blue);
  font-size: 0.8rem;
  line-height: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}
