/* ============================================================
   Esteriks — Premium Coworking Website
   Primary styles
   ============================================================ */

:root {
  /* Brand palette from logo1.png */
  --primary: #0d0d0d;
  --bg: #ffffff;
  --accent: #76b651;
  --accent-green: #76b651;
  --accent-yellow: #edce22;
  --accent-green-deep: #3f7a2a;
  --accent-blue: #76b651;   /* legacy alias → brand green */
  --accent-purple: #edce22; /* legacy alias → brand yellow */
  --gray: #f4f6f2;
  --text-gray: #5f6b7a;
  --text: #0d0d0d;
  --white: #ffffff;
  --border: rgba(13, 13, 13, 0.08);
  --shadow-sm: 0 2px 8px rgba(13, 13, 13, 0.04);
  --shadow-md: 0 8px 30px rgba(13, 13, 13, 0.08);
  --shadow-lg: 0 20px 60px rgba(13, 13, 13, 0.12);
  --shadow-glow: 0 12px 40px rgba(118, 182, 81, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --header-h: 80px;
  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --gradient-accent: linear-gradient(135deg, #76b651 0%, #edce22 100%);
  --gradient-soft: linear-gradient(180deg, #ffffff 0%, #f4f6f2 100%);
  --gradient-hero: linear-gradient(
    115deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.78) 42%,
    rgba(31, 77, 20, 0.55) 78%,
    rgba(118, 182, 81, 0.28) 100%
  );
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul, ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary);
}

h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-gray);
}

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--gray);
}

.section-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header.left {
  margin-left: 0;
  text-align: left;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.0625rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(118, 182, 81, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full {
  width: 100%;
}

.btn-nav {
  padding: 12px 22px;
  font-size: 0.875rem;
  font-weight: 700;
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 0 var(--border), var(--shadow-md);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  flex-shrink: 0;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-asterisk {
  width: 40px;
  height: auto;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  align-self: center;
  display: block;
  max-width: none;
  overflow: visible;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.logo-name span {
  color: var(--accent-green);
}

.logo-tag {
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-gray);
}

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

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--gradient-accent);
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 7px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.page-inner .site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-list a,
.nav-dropdown-toggle {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 0;
  cursor: pointer;
  line-height: inherit;
}

.nav-dropdown-toggle svg {
  flex-shrink: 0;
}

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 11.5rem;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 40;
}

.nav-dropdown a {
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown,
.nav-item-dropdown.is-open .nav-dropdown {
  display: block;
}

.nav-item-dropdown.is-current .nav-dropdown-toggle {
  color: var(--accent-green);
}

.nav-list a:hover,
.nav-list a.active,
.nav-dropdown-toggle:hover,
.nav-item-dropdown.is-open .nav-dropdown-toggle,
.nav-item-dropdown.is-current .nav-dropdown-toggle,
.site-header.scrolled .nav-list a:hover,
.site-header.scrolled .nav-list a.active,
.page-inner .nav-list a:hover,
.page-inner .nav-list a.active {
  color: var(--accent-green);
  background: rgba(118, 182, 81, 0.08);
}

.site-header.scrolled .nav-list a,
.site-header.scrolled .nav-dropdown-toggle,
.page-inner .nav-list a,
.page-inner .nav-dropdown-toggle {
  color: var(--primary);
}

.site-header.scrolled .nav-item-dropdown.is-current .nav-dropdown-toggle,
.page-inner .nav-item-dropdown.is-current .nav-dropdown-toggle {
  color: var(--accent-green);
}

.nav-list a.nav-offer {
  color: var(--primary);
  background: var(--accent-yellow);
  font-weight: 800;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(237, 206, 34, 0.4);
  animation: navOfferPulse 2.6s ease-in-out infinite;
}

.nav-list a.nav-offer:hover,
.nav-list a.nav-offer.active,
.site-header.scrolled .nav-list a.nav-offer,
.site-header.scrolled .nav-list a.nav-offer:hover,
.site-header.scrolled .nav-list a.nav-offer.active,
.page-inner .nav-list a.nav-offer,
.page-inner .nav-list a.nav-offer:hover,
.page-inner .nav-list a.nav-offer.active {
  color: var(--primary);
  background: #f5d84a;
  box-shadow: 0 6px 20px rgba(237, 206, 34, 0.55);
}

@keyframes navOfferPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(237, 206, 34, 0.4);
  }
  50% {
    box-shadow: 0 6px 22px rgba(237, 206, 34, 0.65), 0 0 0 3px rgba(237, 206, 34, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-list a.nav-offer {
    animation: none;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 100px;
  overflow: hidden;
  background: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 40%, rgba(118, 182, 81, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 95% 75%, rgba(237, 206, 34, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(63, 122, 42, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, #000 0%, #0a0a0a 45%, #0d120a 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
  z-index: 1;
}

.hero-asterisk {
  position: absolute;
  right: -4%;
  top: 50%;
  width: min(52vw, 560px);
  height: min(52vw, 560px);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) scale(0.86);
  animation: asteriskIn 1.4s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-asterisk svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  animation: asteriskSpin 48s linear infinite;
  filter: drop-shadow(0 0 40px rgba(118, 182, 81, 0.25));
}

@keyframes asteriskIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.86);
  }
  to {
    opacity: 0.55;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes asteriskSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-brand {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.85s 0.1s forwards;
}

.hero-brand span {
  color: var(--accent-green);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.25s forwards;
}

.hero-content .hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.55s forwards;
}

.hero .btn-outline:hover {
  background: var(--accent-yellow);
  color: var(--primary);
  border-color: var(--accent-yellow);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-green), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== STATS ========== */
.stats {
  padding: 0;
  margin-top: -48px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  background: var(--white);
  padding: 36px 20px;
  text-align: center;
  transition: background var(--transition);
}

.stat-item:hover {
  background: var(--gray);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-gray);
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
}

.about-image-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.about-content-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px 64px;
  align-items: start;
  margin-bottom: 56px;
}

.about-intro .section-eyebrow {
  margin-bottom: 12px;
}

.about-intro h2 {
  margin-bottom: 20px;
  max-width: 16ch;
}

.about-lead {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 500;
}

.about-copy p {
  margin-bottom: 18px;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-content .section-eyebrow {
  margin-bottom: 12px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1.0625rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.about-pillar {
  padding: 28px 24px;
  border-top: 2px solid var(--accent-green);
  background: var(--gray);
  border-radius: 0 0 var(--radius) var(--radius);
}

.about-pillar h3 {
  margin: 16px 0 10px;
  font-size: 1.0625rem;
}

.about-pillar p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--primary);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(118, 182, 81, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-green);
}

/* ========== WORKSPACE CARDS ========== */
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ========== BUILT FOR YOU (Students + Women) ========== */
.section-audience {
  padding-top: 40px;
  padding-bottom: 48px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.audience-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 22px;
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 12px 32px rgba(13, 13, 13, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.audience-card:hover {
  transform: translateY(-4px);
}

.audience-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.audience-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.audience-card > p {
  margin: 0 0 18px;
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--text-gray);
}

.audience-card .feature-list {
  margin: 0 0 18px;
}

.audience-note {
  margin: 0 0 20px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-gray);
  white-space: nowrap;
}

.audience-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Student card — Esteriks green */
.audience-card-student {
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 206, 34, 0.18) 0%, transparent 42%),
    linear-gradient(160deg, #f3f8f0 0%, #ffffff 55%);
  border-color: rgba(118, 182, 81, 0.28);
}

.audience-card-student .audience-kicker {
  color: var(--accent-green-deep);
  background: rgba(118, 182, 81, 0.16);
}

.audience-card-student:hover {
  box-shadow: 0 18px 40px rgba(63, 122, 42, 0.12);
}

/* Women card — soft pink theme */
.audience-card-women {
  --women-pink: #e85a8b;
  --women-pink-deep: #c43d6e;
  --women-pink-soft: #fff0f5;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 90, 139, 0.22) 0%, transparent 45%),
    linear-gradient(160deg, #fff0f5 0%, #ffffff 58%);
  border-color: rgba(232, 90, 139, 0.32);
  box-shadow: 0 12px 32px rgba(196, 61, 110, 0.08);
}

.audience-card-women .audience-kicker {
  color: var(--women-pink-deep);
  background: rgba(232, 90, 139, 0.16);
}

.audience-card-women h3 {
  color: #4a1d2f;
}

.audience-card-women .feature-list li svg,
.audience-card-women .check-icon {
  color: var(--women-pink);
  stroke: var(--women-pink);
}

.audience-card-women:hover {
  box-shadow: 0 18px 40px rgba(196, 61, 110, 0.14);
}

.btn-women {
  background: linear-gradient(135deg, #e85a8b 0%, #c43d6e 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(196, 61, 110, 0.28);
}

.btn-women:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 28px rgba(196, 61, 110, 0.38);
}

.btn-women-outline {
  background: #fff;
  color: var(--women-pink-deep, #c43d6e);
  border: 1.5px solid rgba(232, 90, 139, 0.45);
}

.btn-women-outline:hover {
  background: #fff0f5;
  color: #a8335c;
  border-color: #e85a8b;
}

@media (max-width: 900px) {
  .section-audience {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .section-audience .section-header {
    margin-bottom: 24px;
  }

  .section-audience .section-header p {
    font-size: 0.95rem;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .audience-card {
    padding: 22px 18px;
  }

  .audience-card h3 {
    font-size: 1.25rem;
  }

  .audience-card > p {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .audience-card .feature-list {
    margin-bottom: 12px;
  }

  .audience-note {
    white-space: normal;
    margin-bottom: 14px;
  }

  .audience-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.workspace-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.workspace-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition);
}

.workspace-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(118, 182, 81, 0.25);
}

.workspace-card:hover::before {
  opacity: 1;
}

.workspace-card-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.workspace-index {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(13, 13, 13, 0.18);
}

.workspace-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(118, 182, 81, 0.12);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.workspace-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.375rem;
}

.workspace-card-body > p {
  margin-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.feature-list li svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

.workspace-card.featured {
  border-color: transparent;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.workspace-card.featured::before {
  opacity: 1;
}

.workspace-card.featured:hover {
  border-color: transparent;
}

.workspace-card.featured h3,
.workspace-card.featured .feature-list li {
  color: var(--white);
}

.workspace-card.featured > .workspace-card-body > p {
  color: rgba(255, 255, 255, 0.72);
}

.workspace-card.featured .feature-list li svg {
  color: var(--accent-green);
}

.workspace-card.featured .workspace-index {
  color: rgba(255, 255, 255, 0.28);
}

.workspace-card.featured .workspace-icon {
  background: rgba(118, 182, 81, 0.2);
  color: var(--accent-yellow);
}

.workspace-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--gradient-accent);
  color: var(--primary);
  margin-bottom: 18px;
  width: fit-content;
}

/* ========== AMENITIES ========== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-item {
  background: var(--white);
  border: 1.5px solid rgba(13, 13, 13, 0.14);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 4px 14px rgba(13, 13, 13, 0.04);
}

.amenity-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(118, 182, 81, 0.35);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  transition: all var(--transition);
}

.amenity-item:hover .amenity-icon {
  background: var(--gradient-accent);
  color: var(--white);
}

.amenity-item h4 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.amenity-item p {
  font-size: 0.8125rem;
}

.amenity-soon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(237, 206, 34, 0.18);
  color: var(--accent-green-deep);
}

/* ========== WHY CHOOSE ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(13, 13, 13, 0.14);
  box-shadow: 0 4px 14px rgba(13, 13, 13, 0.04);
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(118, 182, 81, 0.35);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 16px;
  opacity: 0.7;
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 1.125rem;
}

.why-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.6), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(17, 17, 17, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 24px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

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

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

/* ========== PRICING ========== */
.offer-promo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
  padding: 26px 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 206, 34, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(118, 182, 81, 0.35) 0%, transparent 40%),
    linear-gradient(135deg, #0c1a0c 0%, #163016 40%, #1f3d18 100%);
  color: var(--white);
  box-shadow:
    0 18px 44px rgba(63, 122, 42, 0.34),
    0 0 0 1px rgba(237, 206, 34, 0.45);
  border: 2px solid rgba(237, 206, 34, 0.55);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.offer-promo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent-yellow) 0%, var(--accent-green) 100%);
}

.offer-promo:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 206, 34, 0.85);
  box-shadow:
    0 26px 56px rgba(63, 122, 42, 0.42),
    0 0 0 1px rgba(237, 206, 34, 0.55);
  color: var(--white);
}

.offer-promo-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding-left: 6px;
}

.offer-promo-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.offer-promo-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-yellow);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(237, 206, 34, 0.35);
}

.offer-promo-tag {
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(237, 206, 34, 0.4);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.offer-promo-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}

.offer-promo-text {
  font-size: 0.975rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 44rem;
}

.offer-promo-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-yellow);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 16px 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 24px rgba(237, 206, 34, 0.42);
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.offer-promo:hover .offer-promo-cta {
  transform: translateX(3px) scale(1.03);
  background: #f5d84a;
  box-shadow: 0 12px 28px rgba(237, 206, 34, 0.55);
}

@media (max-width: 768px) {
  .offer-promo {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 22px 24px;
    gap: 18px;
  }

  .offer-promo-cta {
    width: 100%;
    justify-content: center;
  }
}

.home-offers {
  padding: 36px 0 16px;
  background:
    linear-gradient(180deg, rgba(237, 206, 34, 0.12) 0%, rgba(244, 246, 242, 0.9) 45%, #ffffff 100%);
}

.home-offers .offer-promo-home {
  margin-bottom: 0;
  padding: 32px 36px;
  animation: offerPulse 2.4s ease-in-out infinite;
}

.home-offers .offer-promo-title {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
}

.home-offers .offer-promo-cta {
  font-size: 1rem;
  padding: 17px 28px;
}

@keyframes offerPulse {
  0%, 100% {
    box-shadow:
      0 18px 44px rgba(63, 122, 42, 0.34),
      0 0 0 1px rgba(237, 206, 34, 0.45);
  }
  50% {
    box-shadow:
      0 22px 56px rgba(63, 122, 42, 0.48),
      0 0 0 5px rgba(237, 206, 34, 0.22),
      0 0 28px rgba(237, 206, 34, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-offers .offer-promo-home {
    animation: none;
  }
}

/* ========== PUBLIC OFFERS PAGE ========== */
.page-hero-offers {
  padding: calc(var(--header-h) + 56px) 0 48px;
  background:
    radial-gradient(circle at 88% 12%, rgba(237, 206, 34, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 8% 88%, rgba(118, 182, 81, 0.14) 0%, transparent 46%),
    linear-gradient(180deg, #f3f6f0 0%, #ffffff 100%);
}

.page-hero-offers-content {
  max-width: 720px;
}

.offers-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-green-deep);
}

.page-hero-offers h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.offers-lede {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 38rem;
}

.offers-hero-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.offers-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, 0.1);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(13, 13, 13, 0.04);
  white-space: nowrap;
  min-width: 0;
}

.offers-hero-chip-muted {
  color: var(--text-gray);
  font-weight: 600;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offers-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(118, 182, 81, 0.2);
}

.offers-section {
  padding-top: 28px;
  padding-bottom: 72px;
}

.offers-search-wrap {
  margin: 0 0 22px;
}

.offers-search-lede {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #1f2937;
}

.offers-search-lede-rest {
  color: #6b7280;
  font-weight: 500;
}

.offers-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.offers-search-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 280px;
  min-height: 56px;
  padding: 8px 8px 8px 16px;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(13, 13, 13, 0.06);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
}

.offers-search-btn.has-filters {
  border-color: rgba(118, 182, 81, 0.45);
  background: #f7fbf3;
}

.offers-search-btn svg {
  flex: 0 0 auto;
  color: #3f7a2a;
}

.offers-search-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.offers-search-copy strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.offers-search-copy em {
  font-style: normal;
  font-size: 0.75rem;
  color: #6b7280;
}

.offers-search-cta {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0d0d0d;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.offers-search-cta-short {
  display: none;
}

.offers-search-clear {
  font-size: 0.84rem;
  font-weight: 700;
  color: #4b5563;
  text-decoration: none;
  padding: 8px 10px;
}

.offers-search-clear:hover {
  color: #111;
}

body.offers-finder-open {
  overflow: hidden;
}

.offers-finder-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}

@media (min-width: 720px) {
  .offers-finder-modal {
    align-items: center;
    padding: 24px;
  }
}

.offers-finder-modal[hidden] {
  display: none !important;
}

.offers-finder-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 9, 0.62);
  backdrop-filter: blur(6px);
}

.offers-finder-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(92vh, 860px);
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.offers-finder-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: #111;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.offers-finder {
  margin: 0;
  padding: 26px 22px 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.offers-finder-kicker {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green-dark, #3f7a2a);
}

.offers-finder-head h2 {
  margin: 0 0 8px;
  padding-right: 36px;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  letter-spacing: -0.04em;
}

.offers-finder-head p {
  margin: 0 0 18px;
  max-width: 42rem;
  color: #5b6470;
  font-size: 0.95rem;
  line-height: 1.5;
}

.offers-finder-steps {
  display: grid;
  gap: 18px;
}

.offers-finder-step {
  margin: 0;
  padding: 0;
  border: 0;
}

.offers-finder-step legend {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.offers-finder-step legend span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0d0d0d;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.offers-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

@media (min-width: 800px) {
  .offers-choice-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .offers-finder-step:first-child .offers-choice-row,
  .offers-finder-step:last-child .offers-choice-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.offers-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 12px 12px 11px;
  border: 1px solid #e3eadc;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.offers-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.offers-choice strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}

.offers-choice em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.3;
}

.offers-choice:hover {
  border-color: rgba(118, 182, 81, 0.55);
  transform: translateY(-1px);
}

.offers-choice.is-on,
.offers-choice:has(input:checked) {
  border-color: #76b651;
  background: #f4faef;
  box-shadow: 0 0 0 3px rgba(118, 182, 81, 0.16);
}

.offers-choice:has(input:not(:checked)) {
  border-color: #e3eadc;
  background: #fff;
  box-shadow: none;
}

.offers-finder-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed #d9e3d0;
}

.offers-finder-bar .btn {
  min-height: 46px;
  padding: 0 20px;
}

.offers-finder-reset {
  font-size: 0.88rem;
  font-weight: 700;
  color: #4b5563;
  text-decoration: none;
}

.offers-finder-reset:hover {
  color: #111;
}

.offers-finder-summary {
  margin: 0;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: #365314;
}

.offers-finder-summary span {
  font-weight: 500;
  color: #6b7280;
}

.offers-audience {
  margin: 0 0 16px;
}

.offers-audience-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}

.offer-card-suggested {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offers-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.offers-tax-note {
  margin: 0 0 28px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 2px solid rgba(217, 119, 6, 0.55);
  background:
    linear-gradient(90deg, rgba(237, 206, 34, 0.42) 0%, rgba(237, 206, 34, 0.22) 100%);
  color: #5c3a00;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: center;
  box-shadow:
    0 8px 22px rgba(217, 119, 6, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.offers-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(13, 13, 13, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.offers-filter:hover {
  border-color: rgba(118, 182, 81, 0.45);
  color: var(--accent-green-dark, #3f7a2a);
}

.offers-filter.is-active {
  background: var(--dark, #0d0d0d);
  border-color: var(--dark, #0d0d0d);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(13, 13, 13, 0.12);
}

.offers-priority-note {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(13, 13, 13, 0.62);
}

.offer-card-priority {
  z-index: 1;
}

.offer-card-priority[data-audience-tag="student"] {
  border-color: rgba(37, 99, 235, 0.28);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 1) 34%),
    var(--white);
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.12),
    0 0 0 1px rgba(37, 99, 235, 0.08);
}

.offer-card-priority[data-audience-tag="women"] {
  border-color: rgba(190, 24, 93, 0.26);
  background:
    linear-gradient(180deg, rgba(219, 39, 119, 0.09) 0%, rgba(255, 255, 255, 1) 34%),
    var(--white);
  box-shadow:
    0 18px 42px rgba(190, 24, 93, 0.11),
    0 0 0 1px rgba(190, 24, 93, 0.08);
}

.offer-card-exclusive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  font-family: var(--font-heading);
  line-height: 1;
}

.offer-card-exclusive-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.offer-card-exclusive-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-card-exclusive-student {
  background: rgba(37, 99, 235, 0.1);
  color: #1e40af;
}

.offer-card-exclusive-student .offer-card-exclusive-dot {
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.offer-card-exclusive-women {
  background: rgba(219, 39, 119, 0.1);
  color: #9d174d;
}

.offer-card-exclusive-women .offer-card-exclusive-dot {
  background: #db2777;
  box-shadow: 0 0 0 4px rgba(219, 39, 119, 0.16);
}

.offer-card-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  font-family: var(--font-heading);
  line-height: 1;
}

.offer-card-highlight-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.offer-card-highlight-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-card-highlight-badge-hot {
  background: rgba(220, 38, 38, 0.12);
  color: #991b1b;
}

.offer-card-highlight-badge-hot .offer-card-highlight-dot {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.offer-card-highlight-badge-limited {
  background: rgba(234, 88, 12, 0.12);
  color: #9a3412;
}

.offer-card-highlight-badge-limited .offer-card-highlight-dot {
  background: #ea580c;
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.2);
}

.offer-card-highlight-badge-featured {
  background: rgba(37, 99, 235, 0.12);
  color: #1e40af;
}

.offer-card-highlight-badge-featured .offer-card-highlight-dot {
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.offer-card-highlight-hot {
  border-color: #ef4444;
  border-width: 2px;
  background:
    linear-gradient(180deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 255, 255, 1) 34%),
    var(--white);
  box-shadow:
    0 18px 42px rgba(220, 38, 38, 0.14),
    0 0 0 1px rgba(239, 68, 68, 0.15);
}

.offer-card-highlight-hot::before {
  background: linear-gradient(90deg, #dc2626 0%, #f87171 100%);
  height: 4px;
  opacity: 1;
}

.offer-card-highlight-limited {
  border-color: #ea580c;
  border-width: 2px;
  background:
    linear-gradient(180deg, rgba(234, 88, 12, 0.1) 0%, rgba(255, 255, 255, 1) 34%),
    var(--white);
  box-shadow:
    0 18px 42px rgba(234, 88, 12, 0.12),
    0 0 0 1px rgba(234, 88, 12, 0.12);
}

.offer-card-highlight-limited::before {
  background: linear-gradient(90deg, #ea580c 0%, #fb923c 100%);
  height: 4px;
  opacity: 1;
}

.offer-card-highlight-featured {
  border-color: #2563eb;
  border-width: 2px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 1) 34%),
    var(--white);
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.12),
    0 0 0 1px rgba(37, 99, 235, 0.12);
}

.offer-card-highlight-featured::before {
  background: linear-gradient(90deg, #2563eb 0%, #93c5fd 100%);
  height: 4px;
  opacity: 1;
}

.offer-card-priority .offer-card-exclusive {
  padding: 8px 14px 8px 11px;
}

.offer-card-priority .offer-card-exclusive-label {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
}

.offer-card[data-audience-tag="student"]::before {
  background: linear-gradient(90deg, #2563eb 0%, #93c5fd 100%);
}

.offer-card[data-audience-tag="women"]::before {
  background: linear-gradient(90deg, #be185d 0%, #f9a8d4 100%);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.offer-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 22px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 13, 13, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-yellow) 100%);
  opacity: 0.85;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(118, 182, 81, 0.35);
  box-shadow: 0 20px 44px rgba(63, 122, 42, 0.12);
}

.offer-card-featured {
  border-color: rgba(118, 182, 81, 0.4);
  background:
    linear-gradient(180deg, rgba(118, 182, 81, 0.08) 0%, rgba(255, 255, 255, 1) 38%),
    var(--white);
  box-shadow:
    0 16px 40px rgba(63, 122, 42, 0.12),
    0 0 0 4px rgba(118, 182, 81, 0.08);
}

.offer-card-featured::before {
  height: 4px;
  opacity: 1;
}

.offer-card.offer-card-highlight-hot {
  border-color: #ef4444;
  border-width: 2px;
  background:
    linear-gradient(180deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 255, 255, 1) 34%),
    var(--white);
  box-shadow:
    0 18px 42px rgba(220, 38, 38, 0.14),
    0 0 0 1px rgba(239, 68, 68, 0.15);
}

.offer-card.offer-card-highlight-hot::before {
  background: linear-gradient(90deg, #dc2626 0%, #f87171 100%);
  height: 4px;
  opacity: 1;
}

.offer-card.offer-card-highlight-hot:hover {
  border-color: #dc2626;
  box-shadow: 0 20px 44px rgba(220, 38, 38, 0.18);
}

.offer-card.offer-card-highlight-limited {
  border-color: #ea580c;
  border-width: 2px;
  background:
    linear-gradient(180deg, rgba(234, 88, 12, 0.1) 0%, rgba(255, 255, 255, 1) 34%),
    var(--white);
  box-shadow:
    0 18px 42px rgba(234, 88, 12, 0.12),
    0 0 0 1px rgba(234, 88, 12, 0.12);
}

.offer-card.offer-card-highlight-limited::before {
  background: linear-gradient(90deg, #ea580c 0%, #fb923c 100%);
  height: 4px;
  opacity: 1;
}

.offer-card.offer-card-highlight-limited:hover {
  border-color: #c2410c;
  box-shadow: 0 20px 44px rgba(234, 88, 12, 0.16);
}

.offer-card.offer-card-highlight-featured {
  border-color: #2563eb;
  border-width: 2px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 1) 34%),
    var(--white);
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.12),
    0 0 0 1px rgba(37, 99, 235, 0.12);
}

.offer-card.offer-card-highlight-featured::before {
  background: linear-gradient(90deg, #2563eb 0%, #93c5fd 100%);
  height: 4px;
  opacity: 1;
}

.offer-card.offer-card-highlight-featured:hover {
  border-color: #1d4ed8;
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.16);
}

.offer-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.offer-card-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.offer-card-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-green-deep);
  background: rgba(118, 182, 81, 0.14);
  padding: 5px 10px;
  border-radius: var(--radius-full);
}

.offer-card-badge {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(237, 206, 34, 0.28);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.offer-card-save {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-yellow);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.offer-card-urgency {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: #8a5a00;
  background: rgba(237, 206, 34, 0.22);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.offer-card h2 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin: 0 0 14px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.offer-card-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin: 0 0 16px;
}

.offer-price-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.offer-card-was {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.offer-card-now {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.offer-card-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.offer-card-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px;
  white-space: pre-line;
}

.offer-meta {
  list-style: none;
  margin: 0 0 24px;
  padding: 4px 0 0;
  border-top: 1px solid rgba(13, 13, 13, 0.08);
}

.offer-meta li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.06);
}

.offer-meta li:last-child {
  border-bottom: none;
}

.offer-meta-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  flex-shrink: 0;
}

.offer-meta-value {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  text-align: right;
}

.offer-card-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.offer-card-actions .btn-outline {
  background: var(--white);
  color: var(--primary);
  border-color: rgba(13, 13, 13, 0.22);
}

.offer-card-actions .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Legacy detail classes kept for booking page compatibility */
.offer-card-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 1px;
  margin: 0 0 22px;
  padding: 0;
  background: rgba(13, 13, 13, 0.06);
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.offer-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 12px;
  background: #f7f8f5;
  min-width: 0;
}

.offer-detail-label {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.offer-detail-value {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  word-break: break-word;
}

@media (max-width: 1100px) {
  .offer-card-details {
    grid-template-columns: 1fr;
  }

  .offer-detail {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
  }

  .offer-detail-value {
    text-align: right;
  }
}

.offer-booking-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-green-deep);
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.offer-booking-value .offer-card-was {
  color: rgba(15, 23, 42, 0.45);
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-hero-offers {
    padding: calc(var(--header-h) + 22px) 0 20px;
  }

  .page-hero-offers h1 {
    font-size: 1.65rem;
    margin-bottom: 8px;
  }

  .offers-kicker {
    margin-bottom: 8px;
    font-size: 0.6875rem;
  }

  .offers-lede {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .offers-hero-meta {
    margin-top: 14px;
    gap: 6px;
  }

  .offers-hero-chip {
    flex: 1 1 0;
    justify-content: center;
    gap: 6px;
    font-size: 0.6875rem;
    padding: 6px 10px;
  }

  .offers-hero-dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 3px rgba(118, 182, 81, 0.2);
  }

  .offers-section {
    padding-top: 12px;
    padding-bottom: 48px;
  }

  .offers-search-lede {
    font-size: 0.88rem;
    margin-bottom: 8px;
  }

  .offers-search-lede-rest {
    display: none;
  }

  .offers-search-btn {
    min-height: 0;
    width: 100%;
    flex: 1 1 100%;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .offers-search-copy strong {
    white-space: normal;
    overflow: visible;
    font-size: 0.9rem;
  }

  .offers-search-cta {
    min-height: 36px;
    padding: 0 12px;
    margin-top: 1px;
  }

  .offers-search-cta-full {
    display: none;
  }

  .offers-search-cta-short {
    display: inline;
  }

  .offers-search-clear {
    width: 100%;
    text-align: center;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .offer-card {
    padding: 24px 20px 22px;
  }

  .offer-card:hover {
    transform: none;
  }
}

.offers-empty {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 56px 28px;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(13, 13, 13, 0.04);
}

.offers-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--accent-green-deep);
  background: rgba(118, 182, 81, 0.12);
}

.offers-empty h2 {
  margin-bottom: 10px;
}

.offers-empty p {
  color: var(--text-gray);
  margin-bottom: 28px;
}

.offers-empty .cta-actions {
  justify-content: center;
}

.page-offers .section {
  padding-top: 28px;
}

.page-offers .offers-section {
  padding-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  align-items: stretch;
  padding-top: 8px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

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

.pricing-card.popular {
  background: var(--primary);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
  background:
    linear-gradient(180deg, rgba(118, 182, 81, 0.1) 0%, rgba(255, 255, 255, 1) 42%),
    var(--white);
  border: 2px solid var(--accent-green);
  box-shadow:
    var(--shadow-lg),
    0 0 0 5px rgba(118, 182, 81, 0.14),
    0 18px 40px rgba(118, 182, 81, 0.18);
  z-index: 1;
  transform: scale(1.03);
  overflow: visible;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--gradient-accent);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow:
    var(--shadow-lg),
    0 0 0 6px rgba(118, 182, 81, 0.2),
    0 24px 48px rgba(118, 182, 81, 0.24);
}

.pricing-card.featured h3 {
  color: var(--accent-green-deep);
}

.pricing-card.featured .plan-tag {
  color: var(--accent-green-deep);
  background: rgba(118, 182, 81, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pricing-card.featured .feature-list li svg {
  color: var(--accent-green);
  stroke: var(--accent-green);
}

.pricing-card.featured .btn-primary {
  box-shadow: 0 8px 22px rgba(118, 182, 81, 0.35);
}

@media (max-width: 768px) {
  .pricing-card.featured,
  .pricing-card.featured:hover {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
}

.pricing-card.popular h3,
.pricing-card.popular .plan-tag,
.pricing-card.popular .plan-desc {
  color: var(--white);
}

.pricing-card.popular .plan-tag {
  color: var(--accent-yellow);
}

.pricing-card.popular .plan-desc {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-card.popular .feature-list li {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card.popular .feature-list li svg {
  color: var(--accent-green);
}

.plan-tag {
  display: inline-block;
  margin: 12px 0 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.plan-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--primary);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--primary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(118, 182, 81, 0.4);
}

.price-label {
  font-size: 0.8125rem;
  color: var(--text-gray);
  margin: 0 0 4px;
}

.price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin: 0;
  line-height: 1.15;
}

.price span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-gray);
}

.plan-rates {
  margin: 4px 0 20px;
}

.plan-rate-list {
  list-style: none;
  margin: 4px 0 20px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.plan-rate-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.plan-rate-list li:last-child {
  border-bottom: 0;
}

.plan-rate-shift {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
}

.plan-rate-amount {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  line-height: 1.2;
}

.plan-rate-amount span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-gray);
}

.pricing-card.featured .plan-rate-list {
  border-color: rgba(118, 182, 81, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.pricing-card.popular .plan-rate-list {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-card.popular .plan-rate-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pricing-card.popular .plan-rate-shift {
  color: var(--white);
}

.pricing-card.popular .plan-rate-amount {
  color: var(--white);
}

.pricing-card.popular .plan-rate-amount span {
  color: rgba(255, 255, 255, 0.55);
}

.plan-rate-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  padding: 4px;
  background: var(--gray);
  border-radius: var(--radius-sm);
}

.plan-rate-tab {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text-gray);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.plan-rate-tab:hover {
  color: var(--primary);
}

.plan-rate-tab.is-active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.plan-rate-panel {
  display: none;
}

.plan-rate-panel.is-active {
  display: block;
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 20px;
}

.price-was {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  opacity: 0.75;
}

.pricing-card.popular .plan-rate-tabs {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-card.popular .plan-rate-tab {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-card.popular .plan-rate-tab:hover {
  color: var(--white);
}

.pricing-card.popular .plan-rate-tab.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: var(--accent-yellow);
  box-shadow: none;
}

.pricing-card.popular .price-label,
.pricing-card.popular .price-was,
.pricing-card.popular .price span {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-card.popular .price {
  color: var(--white);
}

.pricing-card .btn {
  margin-top: auto;
}

/* ========== TESTIMONIALS ========== */
.testimonials-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--accent-yellow);
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--primary);
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--text-gray);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--primary);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--accent-blue);
  width: 24px;
  border-radius: 4px;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-blue);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gradient-accent);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ========== LOCATION ========== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.location-info h2 {
  margin-bottom: 16px;
}

.location-info > p {
  margin-bottom: 32px;
  font-size: 1.0625rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.location-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.location-detail span {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%);
}

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  margin-bottom: 36px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-gray);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--gray);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-size: 0.9375rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: var(--white);
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(118, 182, 81, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Booking date picker (mobile custom calendar) */
.booking-date-group {
  position: relative;
}

.booking-date-group .booking-date-native[hidden] {
  display: none !important;
}

.booking-date-enhanced {
  position: relative;
}

.booking-date-input-wrap {
  position: relative;
}

.booking-date-display {
  padding-right: 3rem !important;
  cursor: pointer;
}

.booking-date-toggle {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.booking-date-toggle:hover,
.booking-date-toggle:focus-visible {
  color: var(--primary);
  background: rgba(13, 13, 13, 0.06);
  outline: none;
}

.booking-date-popover {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 40;
  width: min(22rem, 100%);
  padding: 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.booking-date-popover[hidden] {
  display: none !important;
}

.booking-date-popover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.booking-date-month {
  flex: 1;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  font-family: var(--font-heading);
}

.booking-date-nav {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.booking-date-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-date-weekdays,
.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.booking-date-weekdays {
  margin-bottom: 0.35rem;
  color: var(--text-gray);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.booking-date-weekdays span {
  padding: 0.25rem 0;
}

.booking-date-cell {
  min-height: 2.25rem;
  border: 0;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}

.booking-date-empty {
  visibility: hidden;
}

.booking-date-day {
  background: var(--gray);
  color: var(--primary);
  cursor: pointer;
}

.booking-date-day:hover:not(:disabled) {
  background: rgba(118, 182, 81, 0.18);
}

.booking-date-day.is-selected {
  background: var(--accent-yellow);
  color: var(--primary);
}

.booking-date-day:disabled {
  background: #f3f4f6;
  color: #94a3b8;
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .booking-date-popover {
    width: min(100%, calc(100vw - 2rem));
  }
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-alert.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.booking-pay-box {
  margin: 20px 0 8px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
}

.booking-pay-box > strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.booking-pay-box > p {
  margin: 0 0 14px;
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.booking-pay-box dl {
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
}

.booking-pay-box dl div {
  display: grid;
  gap: 2px;
}

.booking-pay-box dt {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
}

.booking-pay-box dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  word-break: break-all;
}

.booking-pay-box .btn {
  width: 100%;
}

.booking-pay-box-success {
  width: 100%;
  max-width: 360px;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(118, 182, 81, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(237, 206, 34, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.125rem;
}

.page-hero-compact {
  padding: calc(var(--header-h) + 36px) 0 36px;
}

.page-hero-compact .page-hero-content {
  max-width: none;
}

.page-hero-compact .page-hero-content-inline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero-compact .breadcrumb {
  margin-bottom: 0;
}

.page-hero-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.page-hero-compact h1 {
  margin: 0;
  white-space: nowrap;
}

.page-hero-compact p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-gray);
  max-width: 42rem;
}

@media (max-width: 768px) {
  .page-hero-compact {
    padding: calc(var(--header-h) + 24px) 0 24px;
  }

  .page-hero-compact h1 {
    white-space: normal;
    font-size: 1.5rem;
  }

  .page-hero-compact p {
    font-size: 0.95rem;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--accent-blue);
}

.breadcrumb span {
  opacity: 0.4;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0.15;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(118, 182, 81, 0.35) 0%, transparent 70%);
}

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

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-light .logo-text {
  color: var(--white);
}

.logo-light .logo-name {
  color: var(--white);
}

.logo-light .logo-name span {
  color: var(--accent-green);
}

.logo-light .logo-tag {
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand .logo {
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin: 16px 0 12px;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gradient-accent);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-feedback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin: 0 0 8px;
  padding: 22px 28px;
  border-radius: 14px;
  background: rgba(237, 206, 34, 0.12);
  border: 1px solid rgba(237, 206, 34, 0.35);
}
.footer-feedback-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-feedback-copy strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--white);
}
.footer-feedback-copy span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-feedback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent-yellow, #edce22);
  color: #0d0d0d;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.footer-feedback-btn:hover {
  background: #f5dc4a;
  color: #0d0d0d;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-sub {
  color: rgba(255, 255, 255, 0.3);
}

/* ========== SCROLL TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-asterisk svg,
  .hero-brand,
  .hero-content h1,
  .hero-content .hero-desc,
  .hero-actions,
  .hero-scroll {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .hero-asterisk {
    opacity: 0.4;
    transform: translateY(-50%);
  }
}

/* ========== ANIMATIONS (Intersection Observer) ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== UTILITY ========== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Workspace detail page */
.detail-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.detail-section:nth-child(even) {
  direction: rtl;
}

.detail-section:nth-child(even) > * {
  direction: ltr;
}

.detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content .price {
  margin: 20px 0;
}

/* Meeting room features */
.feature-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-block {
  padding: 24px;
  background: var(--gray);
  border-radius: var(--radius);
}

.feature-block h4 {
  margin: 12px 0 6px;
}

.feature-block p {
  font-size: 0.875rem;
}

/* ========== LAUNCH MODAL ========== */
body.launch-modal-open {
  overflow: hidden;
}

.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.launch-modal[hidden] {
  display: none !important;
}

.launch-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 7, 0.72);
  backdrop-filter: blur(8px);
}

.launch-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  background:
    radial-gradient(ellipse 80% 55% at 100% -10%, rgba(237, 206, 34, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at -5% 110%, rgba(118, 182, 81, 0.18) 0%, transparent 50%),
    linear-gradient(165deg, #0e1410 0%, #151e16 42%, #1a2619 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 26px 24px 18px;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(237, 206, 34, 0.12);
  animation: launchModalIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes launchModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.launch-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.launch-modal-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.launch-modal-brand {
  margin: 0 0 12px;
  padding-right: 36px;
}

.launch-modal-logo {
  pointer-events: none;
}

.launch-modal-logo .logo-lockup {
  align-items: center;
  gap: 10px;
}

.launch-modal-logo .logo-asterisk {
  width: 32px;
  height: 32px;
}

.launch-modal-logo .logo-name {
  font-size: 1.05rem;
}

.launch-modal-logo .logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.launch-modal-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-yellow);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.launch-modal-highlight {
  display: block;
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(237, 206, 34, 0.28) 0%, rgba(118, 182, 81, 0.22) 100%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(237, 206, 34, 0.55);
  box-shadow:
    0 0 0 1px rgba(237, 206, 34, 0.18),
    0 10px 28px rgba(237, 206, 34, 0.12);
  animation: launchHighlightPulse 2.4s ease-in-out infinite;
}

@keyframes launchHighlightPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(237, 206, 34, 0.18),
      0 10px 28px rgba(237, 206, 34, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(237, 206, 34, 0.4),
      0 12px 32px rgba(237, 206, 34, 0.22);
  }
}

.launch-modal-highlight-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 4px;
}

.launch-modal-highlight-text {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  letter-spacing: -0.02em;
}

.launch-modal-dialog h2 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.launch-modal-text {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 14px;
  max-width: 42ch;
}

.launch-modal-points {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.launch-modal-points li {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.launch-modal-point-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.launch-modal-point-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.launch-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}

.launch-modal-actions .btn {
  justify-content: center;
  text-align: center;
  min-height: 40px;
  font-size: 0.8125rem;
  padding: 8px 12px;
}

.launch-modal-dismiss {
  display: block;
  width: 100%;
  margin-top: 2px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-align: center;
  transition: color var(--transition);
}

.launch-modal-dismiss:hover {
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 900px) {
  .launch-modal {
    padding: 28px;
  }

  .launch-modal-dialog {
    width: min(100%, 420px);
    padding: 28px 26px 20px;
  }

  .launch-modal-brand {
    margin-bottom: 14px;
  }

  .launch-modal-logo .logo-asterisk {
    width: 36px;
    height: 36px;
  }

  .launch-modal-logo .logo-lockup {
    gap: 10px;
  }

  .launch-modal-logo .logo-name {
    font-size: 1.15rem;
  }

  .launch-modal-logo .logo-tag {
    font-size: 0.625rem;
  }

  .launch-modal-eyebrow {
    margin-bottom: 12px;
    font-size: 0.625rem;
    padding: 5px 10px;
  }

  .launch-modal-highlight {
    margin-bottom: 16px;
    padding: 16px 18px;
  }

  .launch-modal-highlight-text {
    font-size: 1.12rem;
  }

  .launch-modal-dialog h2 {
    font-size: 1.45rem;
    margin-bottom: 10px;
    max-width: 22ch;
  }

  .launch-modal-text {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .launch-modal-points {
    gap: 8px;
    margin-bottom: 18px;
  }

  .launch-modal-points li {
    padding: 10px 12px;
  }

  .launch-modal-point-title {
    font-size: 0.8125rem;
  }

  .launch-modal-point-desc {
    font-size: 0.75rem;
  }

  .launch-modal-actions {
    gap: 8px;
  }

  .launch-modal-actions .btn {
    min-height: 42px;
  }
}

@media (max-width: 560px) {
  .launch-modal {
    padding: 14px;
    align-items: flex-end;
  }

  .launch-modal-dialog {
    width: 100%;
    max-width: 380px;
    padding: 22px 18px 14px;
    border-radius: 18px 18px 14px 14px;
  }

  .launch-modal-dialog h2 {
    max-width: none;
    font-size: 1.25rem;
  }

  .launch-modal-text {
    font-size: 0.85rem;
    max-width: none;
  }

  .launch-modal-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-modal-dialog {
    animation: none;
  }

  .launch-modal-highlight {
    animation: none;
  }
}

.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;
}

.fb-points { margin-top: 8px; }
.fb-points li { color: var(--text-gray); margin-bottom: 8px; }
.fb-subhead {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin: 8px 0 16px;
}
.fb-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  margin-bottom: 8px;
}
.fb-stars-group { margin-bottom: 18px; }
.fb-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}
.fb-stars input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.fb-stars > label {
  width: 32px;
  height: 32px;
  margin: 0;
  cursor: pointer;
  background: none;
}
.fb-stars > label::before {
  content: "★";
  font-size: 1.65rem;
  line-height: 32px;
  color: #d4d4d8;
  display: block;
  text-align: center;
}
.fb-stars > label:hover::before,
.fb-stars > label:hover ~ label::before,
.fb-stars input:checked + label::before,
.fb-stars input:checked + label ~ label::before {
  color: #edce22;
}
.fb-nps { display: flex; flex-wrap: wrap; gap: 6px; }
.fb-nps-opt { margin: 0; }
.fb-nps-opt input { position: absolute; opacity: 0; pointer-events: none; }
.fb-nps-opt span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  background: var(--gray);
}
.fb-nps-opt input:checked + span,
.fb-nps-opt:hover span {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.fb-nps-hint { display: flex; justify-content: space-between; margin-top: 8px; }
.fb-thanks { margin: 0; color: var(--text-gray); line-height: 1.6; }
@media (max-width: 640px) {
  .fb-detail-grid { grid-template-columns: 1fr; }
}
