:root {
  --primary: #17a2b8;
  --primary-dark: #0f7382;
  --accent: #ffb347;
  --bg: #f9fafb;
  --bg-alt: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --danger: #ef4444;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(249, 250, 251, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #ffffff, #0f7382);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.4);
  font-size: 1.25rem;
}

.logo-text-main {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.logo-text-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* BUTTONS */
.btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 16px 40px rgba(23, 162, 184, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(23, 162, 184, 0.5);
}

.btn-outline {
  border-color: var(--border);
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background-color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(249, 250, 251, 0.25);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: rgba(31, 41, 55, 0.9);
}

/* BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(23, 162, 184, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(23, 162, 184, 0.2);
  gap: 0.3rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

/* HERO */
.hero {
  padding: 3.5rem 0 2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-dark), #10b981);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 1.25rem;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
}

.hero-bullet {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
}

.hero-bullet span.icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #059669;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
}

.hero-right {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top left, #e0f7fa, #ffffff);
  border-radius: 26px;
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.status-pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
  font-weight: 500;
}

.hero-card-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.appointments-list {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.appt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

.appt-row:not(:last-child) {
  border-bottom: 1px dashed rgba(209, 213, 219, 0.7);
}

.appt-time {
  font-weight: 600;
  color: var(--primary-dark);
}

.appt-meta {
  font-size: 0.72rem;
  color: var(--muted);
}

.appt-dog {
  font-weight: 500;
}

.appt-tag {
  font-size: 0.7rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(55, 65, 81, 0.05);
  color: #4b5563;
  margin-left: 0.25rem;
}

.hero-route {
  background: rgba(15, 118, 110, 0.08);
  border-radius: 18px;
  padding: 0.9rem;
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-route-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #0f766e;
}

.hero-route-step {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  color: #0f172a;
}

.route-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0ea5e9;
  margin-top: 0.25rem;
}

.hero-label {
  position: absolute;
  right: 1.6rem;
  bottom: 1.4rem;
  background: #111827;
  color: #f9fafb;
  font-size: 0.72rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.6);
}

.hero-label span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

/* SECTION GENERIC */
section {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(23, 162, 184, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.feature-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.feature-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.3rem;
}

/* PRICING */
.pricing-section {
  background: radial-gradient(circle at top, #e0f2fe, #f9fafb);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 18px 45px rgba(23, 162, 184, 0.25);
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(22, 163, 74, 0.08);
  color: #047857;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.pricing-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.pricing-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.pricing-features {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.3rem;
}

.check {
  color: #22c55e;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

.testimonial-name {
  margin-top: 0.7rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* FAQ */
.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

details {
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--muted);
}

details[open] summary::after {
  content: "–";
}

details p {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* CTA STRIP */
.cta-strip {
  background: #111827;
  color: #e5e7eb;
  border-radius: 18px;
  padding: 1.7rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.8);
}

.cta-strip-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cta-strip-text {
  font-size: 0.85rem;
  color: #9ca3af;
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* FOOTER */
footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.social {
  display: flex;
  gap: 0.6rem;
}

.social a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.social a:hover {
  border-color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 2.5rem;
  }
  .hero-right {
    order: -1;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 900px) {
  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  section {
    padding: 2.7rem 0;
  }
  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-card-body {
    grid-template-columns: 1fr;
  }
  .cta-strip {
    padding: 1.3rem 1.2rem;
  }
  header {
    position: static;
  }
}
