/* ============================================
   PINK PONY PLUNGE - Website Styles
   Based on PinkPonyPlunge_Complete_Design_Spec.md
   ============================================ */

/* --- Custom Properties (Design Tokens) --- */
:root {
  /* Brand Colors */
  --fire-coral: #E91E8C;
  --sky-blue: #00B4D8;
  --water-cyan: #00B4D8;
  --sunset-coral: #F04DA0;
  --deep-sky: #009DC0;
  --purple-transition: #7B1E3F;

  /* Neutrals */
  --charcoal: #1B3A4B;
  --slate-gray: #4A6572;
  --medium-gray: #CBCBCB;
  --soft-gray: #E7E7E7;
  --ice-crystal: #F5F9FB;
  --white: #FFFFFF;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #E91E8C 0%, #7B1E3F 35%, #1B3A4B 65%, #00B4D8 100%);
  --gradient-warm: linear-gradient(135deg, #F04DA0 0%, #E91E8C 50%, #D41A7E 100%);
  --gradient-cool: linear-gradient(135deg, #009DC0 0%, #00B4D8 50%, #33C4E2 100%);
  --gradient-subtle: linear-gradient(180deg, #FFFFFF 0%, #F5F9FB 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-fire: 0 4px 12px rgba(233, 30, 140, 0.3);
  --shadow-ice: 0 4px 12px rgba(0, 180, 216, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-normal: 250ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: var(--sky-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--deep-sky);
}

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 40px 0;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--fire-coral);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--slate-gray);
  max-width: 600px;
  margin-bottom: 28px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--soft-gray);
  padding: 0 20px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: var(--fire-coral);
  border-bottom-color: var(--fire-coral);
}

.nav-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition-normal);
}

/* Mobile menu open */
.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--soft-gray);
  box-shadow: var(--shadow-lg);
  padding: 20px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--charcoal);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--soft-gray);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--fire-coral);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.btn-fire {
  background: var(--gradient-warm);
  color: var(--white);
}

.btn-fire:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-fire);
}

.btn-ice {
  background: var(--gradient-cool);
  color: var(--white);
}

.btn-ice:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-ice);
}

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

.btn-outline:hover {
  background: var(--fire-coral);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding: 32px 8px;
  color: var(--white);
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 58, 75, 0.7) 0%, rgba(123, 30, 63, 0.55) 50%, rgba(27, 58, 75, 0.7) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-ribbon {
  background: rgba(20, 25, 35, 0.45);
  /* Dark ribbon with slight transparency */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 0;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-logo {
  height: 140px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.hero h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero .tagline {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 8px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 16px;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 300px;
}

.hero .service-area {
  font-size: 0.9rem;
  opacity: 0.85;
}

.hero-pitch {
  max-width: 640px;
  margin: 24px auto 16px;
  padding: 24px 20px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  color: #fff;
  text-align: center;
}

.hero-pitch-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.95;
}

.hero-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  text-align: left;
}

.hero-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--fire-coral);
  color: #fff;
}

.hero-steps li:nth-child(2) .hero-step-num {
  background: var(--purple-transition);
}

.hero-steps li:nth-child(3) .hero-step-num {
  background: var(--sky-blue);
}

.hero-pitch-highlight {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 14px;
}

.hero-pitch-meta {
  font-size: 0.88rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 8px;
}

.hero-pitch-meta a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-pitch-meta a:hover {
  color: var(--fire-coral);
}

.hero-pitch-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  background: var(--gradient-warm);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: var(--shadow-fire);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-pitch-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 30, 140, 0.45);
  color: #fff;
}

/* --- Acuity Embed --- */
.acuity-embed {
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.acuity-embed iframe {
  display: block;
}

/* --- Equipment Cards (What We Bring) --- */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.equipment-card {
  border-radius: 12px;
  padding: 32px 24px;
  color: var(--white);
}

.equipment-card.fire {
  background: var(--gradient-warm);
  box-shadow: var(--shadow-fire);
}

.equipment-card.ice {
  background: var(--gradient-cool);
  box-shadow: var(--shadow-ice);
}

.equipment-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.equipment-card .card-subtitle {
  opacity: 0.9;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.equipment-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.equipment-card li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  opacity: 0.95;
}

.equipment-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.step {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
  color: var(--white);
}

.step:nth-child(1) .step-number {
  background: var(--fire-coral);
}

.step:nth-child(2) .step-number {
  background: var(--purple-transition);
}

.step:nth-child(3) .step-number {
  background: var(--sky-blue);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.step p {
  color: var(--slate-gray);
  font-size: 0.95rem;
}

/* --- Pricing --- */
.pricing-section {
  background: var(--ice-crystal);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

a.pricing-card {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--soft-gray);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid var(--fire-coral);
  box-shadow: var(--shadow-fire);
  margin-top: 16px;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fire-coral);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fire-coral);
  margin-bottom: 4px;
}

.pricing-card .price-detail {
  font-size: 0.85rem;
  color: var(--slate-gray);
  margin-bottom: 16px;
}

.pricing-card .savings {
  display: inline-block;
  background: rgba(233, 30, 140, 0.1);
  color: var(--sunset-coral);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(233, 30, 140, 0.3);
}

.pricing-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  background: var(--fire-coral);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition-fast);
}

a.pricing-card:hover .pricing-cta {
  background: var(--sunset-coral);
}

/* Contrast therapy highlight */
.pricing-contrast {
  background: var(--gradient-hero);
  border-radius: 12px;
  padding: 32px 24px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.pricing-contrast h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-contrast .price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-contrast p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* --- Use Cases --- */
.usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.usecase-card {
  background: var(--white);
  border: 1px solid var(--soft-gray);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.usecase-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--fire-coral);
}

.usecase-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.usecase-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.usecase-card p {
  font-size: 0.95rem;
  color: var(--slate-gray);
}

/* --- Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.benefit-icon.warm {
  background: rgba(232, 98, 99, 0.1);
}

.benefit-icon.cool {
  background: rgba(88, 175, 220, 0.1);
}

.benefit-item h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--slate-gray);
}

/* --- FAQ --- */
.faq-section {
  background: var(--ice-crystal);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 24px;
}

.faq-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fire-coral);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--soft-gray);
}

details {
  background: var(--white);
  border: 1px solid var(--soft-gray);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

details[open] {
  border-color: var(--fire-coral);
}

summary {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--charcoal);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition-fast);
  min-height: 48px;
}

summary:hover {
  background: var(--ice-crystal);
}

summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--slate-gray);
  transition: transform var(--transition-normal);
}

details[open] summary::after {
  content: '\2212';
}

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

details p {
  padding: 0 16px 14px;
  color: var(--slate-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: var(--soft-gray);
  padding: 48px 0 24px;
  border-top: 3px solid;
  border-image: var(--gradient-hero) 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer p,
.footer a {
  font-size: 0.9rem;
  color: var(--soft-gray);
  line-height: 1.8;
}

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

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  border-color: var(--sky-blue);
  background: rgba(88, 175, 220, 0.1);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-gray);
}

/* --- Email Signup --- */
.email-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.email-signup input {
  min-width: 0;
}

.email-signup input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
}

.email-signup input::placeholder {
  color: var(--medium-gray);
}

.email-signup input:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 2px rgba(88, 175, 220, 0.3);
}

.email-signup button {
  padding: 10px 18px;
  background: var(--fire-coral);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition-fast);
  font-family: inherit;
  white-space: nowrap;
}

.email-signup button:hover {
  background: var(--sunset-coral);
}

/* --- Service Split (Two Paths) --- */
.service-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}

.service-path {
  border-radius: 12px;
  padding: 32px 24px;
  color: var(--white);
}

.service-path h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.service-path p {
  opacity: 0.95;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.service-path ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-path li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.95rem;
  opacity: 0.95;
}

.service-path li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-path .btn {
  display: block;
  text-align: center;
}

.path-fire {
  background: var(--gradient-warm);
  box-shadow: var(--shadow-fire);
}

.path-ice {
  background: var(--gradient-cool);
  box-shadow: var(--shadow-ice);
}

.path-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* --- Rental Cards --- */
.rental-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.rental-card {
  background: var(--white);
  border: 1px solid var(--soft-gray);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.rental-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.rental-card.featured {
  border: 2px solid var(--sky-blue);
  box-shadow: var(--shadow-ice);
  margin-top: 16px;
}

.rental-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.rental-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sky-blue);
  margin-bottom: 4px;
}

.rental-card .price-detail {
  font-size: 0.85rem;
  color: var(--slate-gray);
}

.rental-duration {
  font-size: 0.9rem;
  color: var(--slate-gray);
  margin-bottom: 12px;
}

/* --- Pricing Table (Hourly Rates) --- */
.pricing-table-wrap {
  max-width: 600px;
  margin: 0 auto;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table th,
.pricing-table td {
  padding: 10px 12px;
  text-align: left;
  font-size: 0.9rem;
}

.pricing-table thead {
  background: var(--gradient-hero);
  color: var(--white);
}

.pricing-table th {
  font-weight: 600;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--soft-gray);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: var(--ice-crystal);
}

/* --- Included Box (What's Included) --- */
.included-box {
  background: var(--white);
  border: 2px solid var(--sky-blue);
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: 32px;
  box-shadow: var(--shadow-ice);
}

.included-box h4 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 16px;
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.included-grid span {
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 4px 0;
}

/* --- PPP Difference Section --- */
.difference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
  text-align: left;
}

.difference-card {
  background: var(--white);
  border: 1px solid var(--soft-gray);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.difference-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--fire-coral);
}

.difference-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.difference-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

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

/* --- Pricing Grid (6 items) --- */
.pricing-grid-6 {
  grid-template-columns: 1fr;
}

/* --- What's Inside Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--charcoal);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gallery-item a {
  display: block;
  cursor: zoom-in;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  background: linear-gradient(to top, rgba(27, 58, 75, 0.85) 0%, rgba(27, 58, 75, 0) 100%);
  pointer-events: none;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 28, 0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-content figcaption {
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0.85;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--fire-coral);
  border-color: var(--fire-coral);
  transform: scale(1.05);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
}

body.lightbox-open {
  overflow: hidden;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .hero {
    padding: 100px 0;
  }

  .hero-video {
    width: 100%;
    height: 100%;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .tagline {
    font-size: 1.2rem;
  }


  .hero-buttons {
    flex-direction: row;
    padding: 0;
  }

  .hero-buttons .btn {
    width: auto;
    max-width: none;
  }

  .hero-pitch {
    max-width: 820px;
    padding: 28px 32px;
  }

  .hero-steps {
    flex-direction: row;
    gap: 16px;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-steps li {
    flex: 1;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 0.9rem;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    margin-top: 0;
  }

  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-split {
    grid-template-columns: 1fr 1fr;
  }

  .service-path .btn {
    display: inline-block;
  }

  .rental-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .rental-card.featured {
    margin-top: 0;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .difference-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item img {
    height: 300px;
  }

  .gallery-item-wide img {
    height: 380px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  section {
    padding: 80px 0;
  }

  .hero {
    padding: 120px 0;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .usecases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .difference-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .gallery-item-wide {
    grid-column: span 4;
  }

  .gallery-item img {
    height: 280px;
  }

  .gallery-item-wide img {
    height: 460px;
  }
}