/* ============================================
   26 Degrees Software - Enterprise Clean Theme
   ============================================ */

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

:root {
  --brand: #499dc6;
  --brand-dark: #176b94;
  --brand-light: #e6f2f8;
  --brand-50: #f3f9fc;
  --ink: #0e1a24;
  --ink-2: #2a3a48;
  --ink-3: #4b5b6a;
  --muted: #6b7a89;
  --line: #e3eaf0;
  --line-2: #d5dee6;
  --bg: #ffffff;
  --bg-tint: #f7fafc;
  --bg-dark: #0e1a24;
  --bg-dark-2: #16263a;
  --success: #1ea672;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(14, 26, 36, 0.06), 0 1px 3px rgba(14, 26, 36, 0.04);
  --shadow-md: 0 4px 12px rgba(14, 26, 36, 0.08), 0 2px 4px rgba(14, 26, 36, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(14, 26, 36, 0.18), 0 8px 16px -4px rgba(14, 26, 36, 0.08);
  --max: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 { line-height: 1.2; color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.125rem; }

p { color: var(--ink-3); }

ul { list-style: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Top contact bar
   ============================================ */
.topbar {
  background: var(--ink);
  color: #c8d6e1;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c8d6e1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.topbar-item:hover { color: #fff; }
.topbar-item svg { color: var(--brand); flex-shrink: 0; }
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c8d6e1;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.topbar-badge .badge-dot {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
}
.topbar-hide-md { /* hidden on smaller screens via media query */ }

/* Nav phone link (in header) */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  background: #fff;
  transition: all 0.18s ease;
}
.nav-phone svg { color: var(--brand); flex-shrink: 0; }
.nav-phone:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  box-shadow: 0 4px 12px rgba(73, 157, 198, 0.18);
  transform: translateY(-1px);
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.125rem;
  white-space: nowrap;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 10px rgba(73, 157, 198, 0.35);
}

.primary-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.primary-nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}
.primary-nav a:hover { color: var(--brand-dark); }

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.btn-outline { background: #fff; color: var(--ink-2); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--ink-2); border-color: transparent; }
.btn-ghost:hover { color: var(--brand-dark); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; margin-top: 8px; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(73, 157, 198, 0.12), transparent 60%),
    radial-gradient(800px 400px at -10% 30%, rgba(73, 157, 198, 0.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--brand-50) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  background: var(--brand-light);
  padding: 6px 14px;
  border-radius: 999px;
}
.eyebrow.light { background: rgba(255,255,255,0.08); color: #8ec5e1; }
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(73, 157, 198, 0.2);
}

.hero-content h1 { margin-bottom: 22px; color: var(--ink); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-3);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-meta-item { display: flex; flex-direction: column; }
.meta-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.meta-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  height: 480px;
}
.hero-image-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(73, 157, 198, 0.45) 0%, rgba(23, 107, 148, 0.5) 100%);
  mix-blend-mode: multiply;
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-card-1 {
  top: 20px;
  left: 30px;
  width: 88%;
  z-index: 2;
  transform: rotate(-1deg);
}
.hero-card-2 {
  bottom: 20px;
  right: 0;
  width: 60%;
  z-index: 3;
  transform: rotate(2deg);
}
.hc-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-tint);
}
.hc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e3eaf0;
}
.hc-dot:nth-child(1) { background: #ff6b6b; }
.hc-dot:nth-child(2) { background: #ffc14d; }
.hc-dot:nth-child(3) { background: #4ade80; }
.hc-title {
  margin-left: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
}
.hc-body { padding: 18px 20px; }
.hc-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.hc-row:last-child { border-bottom: 0; }
.hc-row.small { font-size: 0.82rem; padding: 6px 0; }
.hc-label { color: var(--ink-3); }
.hc-value { font-weight: 700; color: var(--ink); }
.hc-value.good { color: var(--success); }
.hc-bar {
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  margin: 16px 0 6px;
  overflow: hidden;
}
.hc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  border-radius: 999px;
}
.hc-tag {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--brand-light);
  color: var(--brand-dark);
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hc-tag.green { background: #def7ec; color: #066c46; }
.hc-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
  margin: 8px 0 16px;
}
.hc-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

/* ============================================
   Trust bar
   ============================================ */
.trust-bar {
  padding: 48px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-label {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  font-weight: 600;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.trust-logo {
  color: var(--ink-3);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: 0.18s;
}
.trust-logo:hover { opacity: 1; color: var(--ink); }

/* ============================================
   Section base
   ============================================ */
.section { padding: 100px 0; }
.section-tinted { background: var(--bg-tint); }
.section-dark { background: var(--bg-dark); color: #d6e1ec; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: #a9bdce; }

.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head.light * { color: #fff; }
.section-head h2 { margin-bottom: 16px; }
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-3);
}
.section-sub-left { font-size: 1.05rem; color: var(--ink-3); margin: 14px 0 24px; }

/* ============================================
   Practitioner / Photo section
   ============================================ */
.practitioner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.practitioner-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.practitioner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.practitioner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 26, 36, 0.85) 100%);
  padding: 50px 28px 24px;
  color: #fff;
}
.practitioner-overlay .ov-tag {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.practitioner-overlay p {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}
.practitioner-text h2 { margin-bottom: 16px; }
.practitioner-text p { font-size: 1.02rem; margin-bottom: 16px; }
.practitioner-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.practitioner-stats > div {
  display: flex;
  flex-direction: column;
}
.practitioner-stats strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}
.practitioner-stats span {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Product illustration */
.product-illustration {
  margin: 0 auto 50px;
  max-width: 800px;
  background: linear-gradient(180deg, var(--brand-50) 0%, transparent 100%);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--brand-light);
}
.product-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Products
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.product-card.featured {
  background: linear-gradient(180deg, #fff 0%, var(--brand-50) 100%);
  border: 1px solid var(--brand);
  box-shadow: 0 12px 40px rgba(73, 157, 198, 0.15);
}
.product-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.product-card.featured .product-tag {
  background: var(--brand);
  color: #fff;
}
.product-card h3 { margin-bottom: 8px; }
.product-sub { font-size: 0.95rem; margin-bottom: 18px; }
.product-features {
  margin-bottom: 22px;
  flex-grow: 1;
}
.product-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}
.product-link {
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: auto;
}
.product-link:hover { color: var(--brand); }

/* ============================================
   AWS / Platform
   ============================================ */
.aws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.aws-card {
  background: var(--bg-dark-2);
  border: 1px solid #1f3349;
  border-radius: var(--radius);
  padding: 26px;
  transition: 0.2s;
}
.aws-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
}
.aws-icon {
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.aws-icon svg { width: 24px; height: 24px; }
.aws-card h4 { color: #fff; margin-bottom: 8px; }
.aws-card p { font-size: 0.92rem; line-height: 1.55; margin-bottom: 14px; }
.aws-services {
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.aws-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 38px 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.aws-cta-text h3 { color: #fff; margin-bottom: 6px; }
.aws-cta-text p { color: rgba(255,255,255,0.9); }
.aws-cta .btn-primary {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}
.aws-cta .btn-primary:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================
   Solutions
   ============================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.solution-card {
  background: #fff;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: 0.2s;
}
.solution-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.solution-card h4 {
  margin-bottom: 8px;
  color: var(--brand-dark);
}

/* ============================================
   Features
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  padding: 8px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand-dark);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h4 { margin-bottom: 8px; }
.feature p { font-size: 0.95rem; }

/* ============================================
   Security
   ============================================ */
.security-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.check-list {
  margin-top: 16px;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 0.98rem;
  color: var(--ink-2);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: var(--brand);
  border-radius: 50%;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / 70% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / 70% no-repeat;
}
.security-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.security-card h4 {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.trust-stat {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.trust-stat span { color: var(--ink-3); }
.trust-stat strong { color: var(--ink); font-weight: 600; }
.security-card .btn { margin-top: 24px; }

/* ============================================
   Stats
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 18px 50px rgba(73, 157, 198, 0.22);
  transform: scale(1.03);
}
.price-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.price-card h3 { margin-bottom: 6px; }
.price-tagline { font-size: 0.92rem; color: var(--muted); margin-bottom: 22px; }
.price {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.price .amount { font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.price .period { color: var(--muted); font-size: 0.9rem; }
.price .period:first-child { width: 100%; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; color: var(--brand-dark); }
.price-features { margin-bottom: 24px; flex-grow: 1; }
.price-features li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 0.93rem;
  color: var(--ink-2);
}
.price-features li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--brand-light);
  color: var(--brand-dark);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   Company / Founder
   ============================================ */
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.founder-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(73, 157, 198, 0.3);
  border: 3px solid #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-avatar-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.founder-card h3 { margin-bottom: 4px; }
.founder-title {
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.founder-bio { text-align: left; font-size: 0.95rem; margin-bottom: 18px; }
.founder-links a { font-size: 0.9rem; font-weight: 600; }

.company-meta { display: flex; flex-direction: column; gap: 28px; }
.meta-block h4 { margin-bottom: 8px; color: var(--brand-dark); }
.meta-block p { font-size: 0.98rem; }
.value-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--ink-2);
}
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}
.value-list strong { color: var(--ink); font-weight: 700; }

/* ============================================
   Early access
   ============================================ */
.early-access {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-sm);
}
.ea-content h2 { margin-bottom: 14px; }
.ea-content p { font-size: 1rem; margin-bottom: 14px; }
.ea-stages { display: flex; flex-direction: column; gap: 12px; }
.ea-stage {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-tint);
  transition: 0.2s;
}
.ea-stage .ea-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
  flex-shrink: 0;
}
.ea-stage strong { display: block; color: var(--ink); font-size: 0.98rem; }
.ea-stage span { color: var(--muted); font-size: 0.85rem; }
.ea-stage.done { background: #f3f9fc; border-color: var(--brand-light); }
.ea-stage.done .ea-step { background: var(--brand); border-color: var(--brand); color: #fff; }
.ea-stage.done span { color: var(--brand-dark); font-weight: 600; }
.ea-stage.active { border-color: var(--brand); background: #fff; }
.ea-stage.active .ea-step { background: var(--brand-light); border-color: var(--brand); color: var(--brand-dark); }
.ea-stage.active span { color: var(--brand-dark); font-weight: 600; }

/* ============================================
   Testimonials (kept for any future use)
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  content: """;
  position: absolute;
  top: 6px;
  left: 18px;
  font-size: 5rem;
  color: var(--brand-light);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial p {
  font-size: 1rem;
  color: var(--ink-2);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.testimonial footer {
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.testimonial footer strong { color: var(--ink); }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0 24px;
  transition: 0.2s;
}
.faq[open] { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: 0.2s;
}
.faq[open] summary::after { content: "−"; background: var(--brand); color: #fff; transform: translateY(-50%) rotate(180deg); }
.faq p {
  padding: 0 0 20px;
  font-size: 0.97rem;
  color: var(--ink-3);
}

/* ============================================
   CTA / Contact
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--bg-dark-2) 100%);
  color: #d6e1ec;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cta-text h2 { color: #fff; margin-bottom: 18px; }
.cta-text p { color: #a9bdce; margin-bottom: 24px; font-size: 1.05rem; }
.cta-text .check-list li { color: #d6e1ec; }
.cta-text .check-list li::before { background: var(--brand); }
.contact-info {
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 0.95rem;
}
.contact-info > div { padding: 4px 0; color: #a9bdce; }
.contact-info strong { color: #fff; margin-right: 8px; }
.contact-info a { color: var(--brand); }

.contact-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.contact-form h3 { margin-bottom: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
  transition: 0.18s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(73, 157, 198, 0.18);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  color: var(--success);
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
  font-size: 0.95rem;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #0a141d;
  color: #94a8bb;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.site-footer .logo { color: #fff; }
.footer-tag {
  margin: 16px 0;
  color: #94a8bb;
  font-size: 0.95rem;
  max-width: 320px;
}
.footer-address {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a8bb;
}
.footer-address a { color: var(--brand); }
.footer-address a:hover { color: #fff; }

.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: #94a8bb;
  font-size: 0.93rem;
  transition: 0.18s;
}
.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  border-top: 1px solid #1a2a3a;
  padding: 22px 0;
}
.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #6e8295;
}
.aws-badge {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

/* ============================================
   Contact channels strip
   ============================================ */
.contact-channels {
  padding: 70px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.channel-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s ease;
}
.channel-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.channel-card.channel-static {
  cursor: default;
}
.channel-card.channel-static:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}
.channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(73, 157, 198, 0.3);
}
.channel-icon svg { width: 24px; height: 24px; }
.channel-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.channel-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.channel-value {
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  word-break: break-word;
}
.channel-card:hover .channel-value { color: var(--brand-dark); }
.channel-sub {
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================================
   Floating contact widget — pill buttons
   ============================================ */
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px 0 18px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(14, 26, 36, 0.22), 0 4px 10px rgba(14, 26, 36, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.fc-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.fc-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
  box-shadow: 0 16px 36px rgba(14, 26, 36, 0.28), 0 6px 14px rgba(14, 26, 36, 0.14);
}
.fc-btn:active { transform: translateY(0); }
.fc-phone {
  background: linear-gradient(135deg, #22c47d 0%, #15875c 100%);
}
.fc-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(34, 196, 125, 0.55);
  animation: fc-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.fc-email {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
}
@keyframes fc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 196, 125, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(34, 196, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 196, 125, 0); }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .topbar-hide-md { display: none !important; }
  .channels-grid { grid-template-columns: 1fr; max-width: 520px; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 9px 11px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; }
  .product-grid,
  .solutions-grid,
  .features-grid,
  .testimonials-grid,
  .aws-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .security-grid { grid-template-columns: 1fr; gap: 40px; }
  .company-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .early-access { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
  .practitioner-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 360px; }
  .primary-nav,
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav.open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 20px 24px;
  }
  .primary-nav.open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .topbar { font-size: 0.78rem; padding: 7px 0; }
  .topbar-wrap { gap: 10px; justify-content: center; }
  .topbar-left { gap: 14px; justify-content: center; }
  .topbar-right { display: none; }
  .topbar-item span { font-size: 0.78rem; }
  .contact-channels { padding: 50px 0; }
  .channel-card { padding: 18px 20px; gap: 14px; }
  .channel-icon { width: 44px; height: 44px; }
  .channel-icon svg { width: 20px; height: 20px; }
  .channel-value { font-size: 0.95rem; }
  .floating-contact { right: 14px; bottom: 14px; gap: 10px; }
  .fc-btn { height: 46px; padding: 0 18px 0 14px; font-size: 0.88rem; gap: 8px; }
  .fc-btn svg { width: 16px; height: 16px; }
  .nav-phone { display: none; }
  .section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }
  .product-grid,
  .solutions-grid,
  .features-grid,
  .testimonials-grid,
  .aws-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stat-num { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-meta { gap: 24px; }
  .meta-num { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .aws-cta { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .announcement-text { font-size: 0.78rem; }
  .header-wrap { gap: 12px; }
  .early-access { padding: 28px; }
  .price .amount { font-size: 2rem; }
  .hero-visual { height: 280px; }
  .practitioner-stats { gap: 20px; flex-wrap: wrap; }
  .practitioner-stats strong { font-size: 1.25rem; }
  .logo-img { height: 36px; }
}
