/* ====================================================
   BIN BEAGLE — MAIN STYLESHEET
   Colors: Slate Gray (#334155, #475569), Navy Blue (#1B3A6B), White (#FFF, #F8FAFC)
   ==================================================== */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --blue-500: #1B3A6B;
  --blue-400: #2A5298;
  --blue-300: #4A72B8;
  --blue-600: #142D54;
  --blue-700: #0D1F3C;
  --blue-50:  #EEF2F9;
  --blue-100: #D0DAEE;

  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;

  --white: #FFFFFF;
  --green-500: #22C55E;
  --green-100: #DCFCE7;
  --yellow-500: #EAB308;
  --red-500: #EF4444;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.14), 0 8px 16px rgba(0,0,0,.08);
  --shadow-blue: 0 8px 32px rgba(27,58,107,.28);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.45s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-500);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.left { text-align: left; }

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--slate-500);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.75;
}
.section-subtitle.left {
  text-align: left;
  margin: 0 0 36px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  padding: 11px 24px;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(27,58,107,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  border: 1.5px solid var(--slate-300);
}
.btn-ghost:hover {
  border-color: var(--blue-400);
  color: var(--blue-600);
  background: var(--blue-50);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--blue-500);
  color: var(--white);
  padding: 9px 20px;
  font-size: .875rem;
}
.btn-nav:hover { background: var(--blue-600); transform: translateY(-1px); }
.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn-xl {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

/* ---- SCROLL ANIMATION ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate="fade-left"] { transform: translateX(28px); }
[data-animate="fade-right"] { transform: translateX(-28px); }
[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: all var(--transition-slow);
}
.nav-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--slate-200), 0 4px 20px rgba(0,0,0,.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
}
.logo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-text strong { color: var(--blue-600); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--blue-600); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background: linear-gradient(155deg, var(--slate-50) 0%, var(--blue-50) 45%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue-100), transparent 70%);
  top: -150px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blue-50), transparent 70%);
  bottom: -100px; left: 0;
  opacity: 0.6;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--slate-200), transparent 70%);
  top: 40%; left: 40%;
  opacity: 0.3;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--blue-100);
  color: var(--blue-600);
  font-size: .8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge i { color: var(--yellow-500); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--slate-900);
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 1.0625rem;
  color: var(--slate-500);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8375rem;
  font-weight: 500;
  color: var(--slate-500);
}
.trust-item i { color: var(--blue-500); }
.trust-divider {
  width: 1px; height: 20px;
  background: var(--slate-300);
}

/* Floating badge keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27,58,107,.4); }
  50%       { box-shadow: 0 0 0 8px rgba(27,58,107,0); }
}

/* ============================================================
   HERO PHOTO
   ============================================================ */
.hero-photo {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  outline: 1px solid var(--slate-200);
  aspect-ratio: 4 / 3;
  background: var(--slate-100);
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.7s ease;
}
.hero-photo-frame:hover .hero-photo-img {
  transform: scale(1.04);
}

/* Dark gradient so badges stay legible */
.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(15,23,42,.5) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(15,23,42,.2) 0%, transparent 40%);
  pointer-events: none;
  border-radius: calc(var(--radius-xl) - 4px);
}

/* Frosted-glass overlay badges */
.hero-photo-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: var(--shadow-lg);
  animation: float 3.5s ease-in-out infinite;
  white-space: nowrap;
}
.badge-tl {
  top: 18px;
  left: 18px;
  animation-delay: 0s;
}
.badge-tl i { color: var(--green-500); }
.badge-br {
  bottom: 18px;
  right: 18px;
  animation-delay: 1.4s;
}
.badge-br i { color: var(--blue-500); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 12px;
}

.step-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: white;
  box-shadow: var(--shadow-blue);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 10px;
}
.step-card p { font-size: .9rem; color: var(--slate-500); line-height: 1.6; }

.step-connector {
  font-size: 1.25rem;
  color: var(--blue-300);
  padding: 0 16px;
  flex-shrink: 0;
}

/* ============================================================
   USE CASES
   ============================================================ */
.use-cases {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  text-align: center;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.use-case-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.use-case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--blue-200);
}
.use-case-card.featured {
  background: linear-gradient(155deg, var(--slate-800), var(--slate-900));
  border-color: var(--slate-700);
  color: white;
  transform: scale(1.03);
}
.use-case-card.featured:hover {
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--blue-500);
  transform: scale(1.03) translateY(-6px);
}

.uc-featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: white;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.uc-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.uc-blue { background: var(--blue-50); color: var(--blue-600); }
.uc-white { background: rgba(255,255,255,.12); color: white; }

.uc-tag {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-400);
  margin-bottom: 10px;
}
.use-case-card.featured .uc-tag { color: var(--blue-300); }

.use-case-card h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 12px;
  line-height: 1.3;
}
.use-case-card.featured h3 { color: white; }

.use-case-card > p {
  font-size: .9rem;
  color: var(--slate-500);
  margin-bottom: 20px;
  line-height: 1.7;
}
.use-case-card.featured > p { color: var(--slate-400); }

.uc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.uc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .875rem;
  color: var(--slate-600);
}
.use-case-card.featured .uc-list li { color: var(--slate-300); }
.uc-list li i { color: var(--blue-500); margin-top: 3px; flex-shrink: 0; font-size: .85rem; }
.use-case-card.featured .uc-list li i { color: var(--blue-400); }

.uc-quote {
  font-size: .8375rem;
  font-style: italic;
  color: var(--slate-400);
  border-left: 3px solid var(--blue-200);
  padding-left: 12px;
  line-height: 1.6;
}
.use-case-card.featured .uc-quote {
  color: var(--slate-400);
  border-color: var(--blue-600);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

/* Toggle */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 56px;
  margin-top: 8px;
}
.toggle-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-500);
  cursor: pointer;
  transition: color var(--transition);
  user-select: none;
}
.toggle-label.active { color: var(--blue-500); }
.toggle-switch {
  position: relative;
  width: 44px; height: 24px;
  background: var(--slate-300);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
  padding: 0;
}
.toggle-switch.on { background: var(--blue-500); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.toggle-switch.on .toggle-thumb { transform: translateX(20px); }
.toggle-save-badge {
  font-size: .7rem;
  font-weight: 700;
  color: var(--green-500);
  background: var(--green-100);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* Grid — removed (replaced by table layout) */

/* Disclaimer */
.pricing-disclaimer {
  font-size: .8375rem;
  color: var(--slate-400);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.pricing-disclaimer strong { color: var(--slate-600); }
.pricing-disclaimer a { color: var(--blue-400); text-decoration: underline; }

/* Table wrap */
.ptable-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}
.ptable {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .9rem;
}

/* Column sizing */
.ptable-feature-col { width: 26%; }
.ptable-plan-col    { width: 18.5%; }

/* Header row */
.ptable thead th {
  padding: 28px 20px 24px;
  text-align: center;
  vertical-align: bottom;
  border-bottom: 2px solid var(--slate-200);
  background: var(--white);
}
.ptable thead th.ptable-feature-col {
  text-align: left;
}
.ptable-featured {
  background: var(--blue-500) !important;
  position: relative;
}

/* Plan name */
.ptable-plan-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 6px;
}
.ptable-featured .ptable-plan-name { color: var(--white); }

/* Price */
.ptable-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  margin-bottom: 6px;
}
.ptable-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 7px;
}
.ptable-featured .ptable-currency { color: rgba(255,255,255,.8); }
.ptable-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--slate-900);
  transition: all .3s ease;
}
.ptable-featured .ptable-amount { color: var(--white); }
.ptable-price-custom {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-500);
  margin-bottom: 6px;
  justify-content: center;
  display: flex;
}

/* Billing note */
.ptable-billing {
  font-size: .75rem;
  color: var(--slate-400);
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 0 4px;
}
.ptable-featured .ptable-billing { color: rgba(255,255,255,.6); }

/* Most popular badge */
.ptable-popular-badge {
  display: inline-block;
  background: var(--white);
  color: var(--blue-500);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,.4);
}

/* CTA buttons in header */
.ptable-btn {
  display: inline-block;
  background: var(--slate-900);
  color: var(--white) !important;
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  border: none;
}
.ptable-btn:hover { background: var(--blue-500); transform: translateY(-2px); }
.ptable-btn-featured {
  background: var(--white);
  color: var(--blue-600) !important;
}
.ptable-btn-featured:hover { background: var(--slate-100); }

/* Body rows */
.ptable tbody td {
  padding: 13px 20px;
  text-align: center;
  color: var(--slate-600);
  font-size: .875rem;
  border-bottom: 1px solid var(--slate-100);
  vertical-align: middle;
}
.ptable tbody td.ptable-label {
  text-align: left;
  font-weight: 500;
  color: var(--slate-700);
  font-size: .875rem;
}
.ptable tbody td.ptable-featured {
  background: var(--blue-50);
  border-left: 1px solid var(--blue-100);
  border-right: 1px solid var(--blue-100);
  color: var(--white);
  background: var(--blue-500);
}
.ptable tbody td.ptable-featured .ptable-check { color: var(--white); }
.ptable tbody td.ptable-featured .ptable-dash  { color: rgba(255,255,255,.4); }
.ptable-row-shaded td { background: var(--slate-50); }
.ptable-row-shaded td.ptable-featured { background: #e8eef8; }

/* Check / dash */
.ptable-check { color: var(--blue-500); font-size: 1rem; }
.ptable-dash   { color: var(--slate-300); font-size: 1.1rem; font-weight: 700; }
.ptable-val-highlight { color: var(--blue-500); font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--blue-50) 100%);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: left;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-200);
}
.testimonial-card.featured-review {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
}
.testimonial-card.featured-review:hover {
  transform: scale(1.03) translateY(-4px);
}

.tcard-quote-icon {
  font-size: 1.75rem;
  color: var(--blue-200);
  margin-bottom: 16px;
}

.tcard-text {
  font-size: .9375rem;
  color: var(--slate-600);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.tcard-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tcard-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--slate-600), var(--slate-500));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.tcard-avatar .avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.tcard-author { flex: 1; }
.tcard-author strong { display: block; font-size: .875rem; color: var(--slate-800); }
.tcard-author span  { font-size: .78rem; color: var(--slate-400); }
.tcard-stars { color: var(--yellow-500); font-size: .75rem; display: flex; gap: 2px; }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .9375rem;
  color: var(--slate-600);
}
.rs-stars { color: var(--yellow-500); font-size: 1rem; display: flex; gap: 3px; }
.rating-summary strong { color: var(--slate-800); font-weight: 700; }

/* ============================================================
   CTA / SCHEDULE SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(155deg, var(--slate-800) 0%, var(--slate-900) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.cta-bg-blob {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,58,107,.15), transparent 70%);
  border-radius: 50%;
  top: -150px; right: -100px;
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 24px;
}
.cta-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  line-height: 1.25;
}
.cta-box > .cta-content > p {
  color: var(--slate-400);
  font-size: .9375rem;
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.7;
}

.schedule-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row.single { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--slate-400);
  letter-spacing: .02em;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .9375rem;
  color: white;
  font-family: var(--font-body);
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,.3); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group select option { background: var(--slate-800); color: white; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue-400);
  background: rgba(27,58,107,.1);
  box-shadow: 0 0 0 3px rgba(27,58,107,.15);
}

.form-disclaimer {
  text-align: center;
  font-size: .78rem;
  color: var(--slate-500);
  margin-top: 4px;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 32px 0;
}
.success-icon {
  font-size: 3rem;
  color: var(--green-500);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.form-success p { color: var(--slate-400); font-size: .9375rem; }

/* ============================================================
   SERVICE AREA STRIP
   ============================================================ */
.service-area-strip {
  background: var(--blue-50);
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
  padding: 14px 0;
  text-align: center;
}
.service-area-strip p {
  font-size: .875rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0;
}
.service-area-strip i {
  color: var(--blue-500);
  margin-right: 6px;
}
.service-area-strip strong {
  color: var(--slate-800);
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--slate-900);
  padding: 72px 0 0;
  color: var(--slate-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--slate-700);
}

.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text strong { color: var(--blue-400); }

.footer-tagline {
  font-size: .875rem;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: var(--slate-800);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-400);
  font-size: .875rem;
  transition: all var(--transition);
  border: 1px solid var(--slate-700);
}
.footer-socials a:hover {
  background: var(--blue-600);
  color: white;
  border-color: var(--blue-600);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: .03em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: var(--slate-500);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-400); }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--slate-500);
}
.contact-list li i {
  color: var(--blue-500);
  margin-top: 2px;
  width: 14px;
  flex-shrink: 0;
}
.contact-list a { color: var(--slate-500); transition: color var(--transition); }
.contact-list a:hover { color: var(--blue-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8125rem; color: var(--slate-600); }
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .8125rem;
  color: var(--slate-600);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--blue-400); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center !important; align-items: center !important; }
  .hero-subheadline { margin: 0 auto 36px; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-photo { max-width: 540px; margin: 0 auto; width: 100%; }

  .use-case-grid { grid-template-columns: 1fr; gap: 20px; }
  .use-case-card.featured { transform: none; }
  .use-case-card.featured:hover { transform: translateY(-6px); }

  .ptable-wrap { border-radius: var(--radius-lg); }
  .ptable { font-size: .8rem; }
  .ptable-plan-name { font-size: 1rem; }
  .ptable-amount { font-size: 2rem; }

  .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card.featured-review { transform: none; }
  .testimonial-card.featured-review:hover { transform: translateY(-4px); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--slate-200);
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) {
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-100);
  }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn-nav {
    margin-top: 8px;
    justify-content: center;
    border-radius: var(--radius-sm);
  }
  .hamburger { display: flex; }

  .hero { padding: 90px 0 60px; }
  .pricing-toggle { flex-wrap: wrap; justify-content: center; gap: 10px; padding: 10px 16px; }
  .ptable thead th { padding: 20px 12px 16px; }
  .ptable tbody td { padding: 11px 12px; font-size: .8rem; }
  .ptable-btn { padding: 8px 14px; font-size: .78rem; }
  .steps-grid { flex-direction: column; align-items: stretch; gap: 16px; }
  .step-card { max-width: 100%; }
  .step-connector { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.25rem; }
  .pc-amount { font-size: 2.5rem; }
  .pricing-card { padding: 28px 20px 32px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-photo-badge { font-size: .72rem; padding: 7px 12px; }
  .rating-summary { flex-direction: column; gap: 6px; }
}
