/* Taro Keens Racquets - Professional Public Pages Stylesheet */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  color: #1C1C1C;
  background: #f8faf9;
  font-size: 17px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(63, 193, 201, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #CEDF24;
  text-decoration: none;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #CEDF24;
}

.nav-cta {
  background: #CEDF24;
  color: #1C1C1C !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
}

.nav-cta:hover {
  background: #d4e52e;
}

.nav-icon {
  display: flex;
  align-items: center;
  padding: 0.4rem;
}

.nav-icon svg {
  stroke: rgba(255, 255, 255, 0.9);
  transition: stroke 0.2s;
}

.nav-icon:hover svg {
  stroke: #CEDF24;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #3FC1C9;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 8rem 2rem 5rem;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.brand {
  color: #CEDF24;
  display: block;
}

.subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

/* Hero text link */
.hero-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.hero-link:hover {
  color: #CEDF24;
}

.hero-cta {
  margin-bottom: 0.5rem;
}

.hero-links {
  margin-top: 1rem;
}

/* Philosophy Section */
.philosophy-section {
  padding: 6rem 2rem;
  background: white;
  text-align: center;
}

.philosophy-content {
  max-width: 680px;
  margin: 0 auto;
}

.philosophy-section h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1C1C1C;
  margin-bottom: 2rem;
}

.philosophy-body {
  margin-bottom: 2.5rem;
}

.philosophy-body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.25rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-body p:first-child {
  font-weight: 500;
  color: #1C1C1C;
}

.philosophy-link {
  color: #3FC1C9;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.philosophy-link:hover {
  color: #2ea5ad;
}

/* Authority Strip */
.authority-strip {
  background: #1C1C1C;
  padding: 1rem 2rem;
}

.authority-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.authority-content span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.authority-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

/* Difference Section */
.difference-section {
  padding: 6rem 2rem;
  background: #fafafa;
}

.difference-cards {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.difference-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.difference-card h3 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1C1C1C;
  margin: 0 0 0.75rem;
  border: none;
  padding: 0;
}

.difference-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Membership Teaser */
.membership-teaser {
  padding: 6rem 2rem;
  background: white;
  text-align: center;
}

.teaser-content {
  max-width: 560px;
  margin: 0 auto;
}

.membership-teaser h2 {
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 1rem;
}

.membership-teaser p {
  font-size: 1rem;
  line-height: 1.65;
  color: #666;
  margin: 0 0 1.5rem;
}

.teaser-link {
  color: #3FC1C9;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.teaser-link:hover {
  color: #2ea5ad;
}

/* Who Section */
.who-section {
  padding: 6rem 2rem;
  background: #fafafa;
}

.who-content {
  max-width: 560px;
  margin: 0 auto;
}

.who-section h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1C1C1C;
  margin: 0 0 1.5rem;
}

.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3FC1C9;
}

/* Final CTA */
.final-cta {
  padding: 6rem 2rem;
  background: #1C1C1C;
  text-align: center;
}

.final-cta-content {
  max-width: 480px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: white;
  margin: 0 0 2rem;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons - clean, no gradients/shadows */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.btn-primary {
  background: #CEDF24;
  color: #1C1C1C;
}

.btn-primary:hover {
  background: #d4e52e;
  opacity: 0.95;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #1C1C1C;
}

.btn-secondary:hover {
  background: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #3FC1C9;
  border: 2px solid #3FC1C9;
}

.btn-outline:hover {
  background: #3FC1C9;
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

button.btn {
  width: 100%;
  margin-top: 1rem;
}

/* About Section */
.about-section {
  padding: 6rem 2rem;
  background: white;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #3FC1C9;
  margin-bottom: 1.5rem;
}

.about-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.credentials {
  list-style: none;
  margin-bottom: 2rem;
}

.credentials li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  color: #333;
}

.credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #CEDF24;
  border-radius: 50%;
  border: 2px solid #3FC1C9;
}

/* Features Section */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.features h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 3rem;
  color: #3FC1C9;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: #3FC1C9;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3FC1C9 0%, #BFEDEE 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #1C1C1C;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #3FC1C9;
  margin-bottom: 0.75rem;
  border: none;
  padding: 0;
  margin-top: 0;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 2rem;
  background: #3FC1C9;
  color: white;
}

.gallery-section h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 3rem;
  text-align: center;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.gallery-item:hover img {
  opacity: 0.9;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-weight: 600;
  font-size: 0.9rem;
}

/* Pricing Preview */
.pricing-preview {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #3FC1C9 0%, #1C1C1C 100%);
  color: white;
  text-align: center;
}

.pricing-preview h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.pricing-intro {
  opacity: 0.9;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 12px;
  width: 260px;
  transition: border-color 0.2s, background 0.2s;
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.price-card.featured {
  background: white;
  color: #1a2332;
}

.price-card.featured:hover {
  background: #fafafa;
}

.featured-badge {
  background: #CEDF24;
  color: #1C1C1C;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  border: none;
  padding: 0;
  color: inherit;
  margin-top: 0;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.price-card p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Membership list styling */
.membership-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.membership-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.4;
}

.membership-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: #CEDF24;
  border-radius: 50%;
}

.price-card.featured .membership-list li::before {
  background: #3FC1C9;
}

.view-all-link {
  display: inline-block;
  margin-top: 2rem;
  color: #CEDF24;
  text-decoration: none;
  font-weight: 600;
}

.view-all-link:hover {
  text-decoration: underline;
}

/* Comparison Table Section */
.comparison-section {
  padding: 6rem 2rem;
  background: white;
}

.comparison-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.comparison-container h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #3FC1C9;
  margin-bottom: 0.5rem;
}

.comparison-intro {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table thead {
  background: #3FC1C9;
  color: white;
}

.comparison-table th {
  padding: 1rem 1.25rem;
  font-weight: 600;
  text-align: center;
}

.comparison-table th.feature-col {
  text-align: left;
  width: 40%;
}

.comparison-table th.tier-col {
  width: 20%;
}

.comparison-table th.tier-highlight {
  background: #BFEDEE;
  color: #1C1C1C;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

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

.comparison-table tbody tr:hover {
  background: #f8faf9;
}

.comparison-table td {
  padding: 0.875rem 1.25rem;
  text-align: center;
  color: #333;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #3FC1C9;
}

.comparison-table td.tier-highlight {
  background: rgba(191, 237, 238, 0.2);
}

.comparison-table .price-row td {
  font-weight: 700;
  color: #3FC1C9;
  background: #f8faf9;
}

.comparison-table .price-row td.tier-highlight {
  background: rgba(191, 237, 238, 0.3);
  color: #3FC1C9;
}

.comparison-table td.check {
  color: #A2D45E;
  font-weight: 600;
}

.comparison-table td.cross {
  color: #999;
}

.comparison-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Guest Section */
.guest-section {
  padding: 6rem 2rem;
  background: #f8faf9;
  text-align: center;
}

.guest-container {
  max-width: 700px;
  margin: 0 auto;
}

.guest-container h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #3FC1C9;
  margin-bottom: 1rem;
}

.guest-intro {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.guest-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: inline-block;
  text-align: left;
}

.guest-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 1rem;
  color: #333;
}

.guest-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: #3FC1C9;
  border-radius: 50%;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  text-align: center;
  background: white;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #3FC1C9;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* Footer */
footer {
  background: #1C1C1C;
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: #CEDF24;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #CEDF24;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Container for forms */
.container {
  max-width: 600px;
  margin: 6rem auto 3rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.container.wide {
  max-width: 1200px;
}

.container h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #3FC1C9;
}

.step-text {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Forms */
form {
  margin-top: 2rem;
}

label {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  margin-top: 0.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #3FC1C9;
  box-shadow: 0 0 0 3px rgba(63, 193, 201, 0.2);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0;
}

h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #3FC1C9;
  font-size: 1.25rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

/* Messages */
.error-message {
  background: #fef2f2;
  color: #dc2626;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #dc2626;
}

.link-text {
  text-align: center;
  margin-top: 1.5rem;
  color: #666;
}

.link-text a {
  color: #3FC1C9;
  text-decoration: none;
  font-weight: 600;
}

.link-text a:hover {
  text-decoration: underline;
}

/* Booking Page */
.booking-iframe {
  width: 100%;
  min-height: 800px;
  border: none;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.policy-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #3FC1C9;
  margin: 2rem 0;
}

.policy-box h3 {
  margin-top: 0;
  border: none;
  padding: 0;
}

.policy-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
}

.nav-links a {
  color: #3FC1C9;
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-image img {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

/* Login button styling - visible on mobile */
.nav-login {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
}

.nav-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }
  
  .nav-links-top {
    gap: 0.5rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav-login {
    padding: 0.4rem 0.875rem;
    font-size: 0.85rem;
  }
  
  .nav-cta {
    padding: 0.4rem 0.875rem;
    font-size: 0.85rem;
  }
  
  .hero {
    padding: 6rem 1.25rem 3rem;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .brand {
    display: inline;
  }
  
  .subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    text-align: center;
  }
  
  .features h2,
  .gallery-section h2,
  .pricing-preview h2,
  .cta-section h2,
  .about-content h2 {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .gallery-item,
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
    height: 200px;
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.5rem;
    gap: 1.25rem;
  }
  
  .price-card {
    width: 100%;
    padding: 1.5rem;
  }
  
  .price-card.featured {
    order: -1;
  }
  
  .price-card h3 {
    font-size: 1.125rem;
  }
  
  .price {
    font-size: 1.75rem;
  }
  
  .membership-list {
    text-align: left;
    padding-left: 0;
    list-style: none;
  }
  
  .membership-list li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
  }
  
  .authority-strip {
    padding: 0.875rem 1rem;
  }
  
  .authority-content {
    gap: 1rem;
  }
  
  .authority-content span {
    font-size: 0.8125rem;
  }
  
  .philosophy-section {
    padding: 4rem 1.25rem;
  }
  
  .philosophy-section h2 {
    font-size: 1.5rem;
  }
  
  .difference-section {
    padding: 4rem 1.25rem;
  }
  
  .difference-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .difference-card {
    padding: 1.5rem 1rem;
  }
  
  .membership-teaser {
    padding: 4rem 1.25rem;
  }
  
  .membership-teaser h2 {
    font-size: 1.375rem;
  }
  
  .who-section {
    padding: 4rem 1.25rem;
  }
  
  .who-section h2 {
    font-size: 1.25rem;
  }
  
  .final-cta {
    padding: 4rem 1.25rem;
  }
  
  .final-cta h2 {
    font-size: 1.5rem;
  }
  
  .membership-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #d4ff00;
    border-radius: 50%;
  }
  
  .container {
    margin: 5rem 1rem 2rem;
    padding: 1.5rem;
  }
  
  /* Guest section mobile */
  .guest-section {
    padding: 3rem 1.25rem;
  }
  
  .guest-container {
    text-align: center;
  }
  
  .guest-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .guest-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .guest-list {
    text-align: left;
    display: inline-block;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  
  .guest-list li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
  }
  
  .guest-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #2d5a3d;
    border-radius: 50%;
  }
  
  /* Pricing section mobile */
  .pricing-preview {
    padding: 3rem 1rem;
  }
  
  /* Comparison table mobile */
  .comparison-section {
    padding: 3rem 0.75rem;
  }
  
  .comparison-container h2 {
    font-size: 1.5rem;
  }
  
  .comparison-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .comparison-table-wrapper {
    overflow-x: visible;
  }
  
  .comparison-table {
    font-size: 0.75rem;
    min-width: 100%;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem 0.35rem;
  }
  
  .comparison-table th.feature-col {
    width: 34%;
  }
  
  .comparison-table th.tier-col {
    width: 22%;
  }
  
  .comparison-table td:first-child {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  
  .comparison-ctas {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.5rem;
  }
  
  /* Footer mobile */
  footer {
    padding: 3rem 1.25rem 1.5rem;
  }
  
  .footer-content {
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand h3 {
    font-size: 1.125rem;
  }
}

/* Tier Badge */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(212, 255, 0, 0.2);
  color: #d4ff00;
  border: 1px solid rgba(212, 255, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 4rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Nav auth elements - hidden until auth check completes */
.nav-auth-element {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Auth area wrapper - maintains consistent width */
.nav-auth-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* When nav is ready (auth check complete), show all elements */
.navbar.nav-ready .tier-badge,
.navbar.nav-ready .nav-auth-element {
  opacity: 1;
}

/* Hidden auth elements use visibility to prevent layout shift */
.nav-auth-hidden {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

/* Mobile auth hidden */
.nav-mobile-links .nav-auth-hidden {
  display: none;
}

/* Mobile Navigation */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-sheet {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85%;
  height: 100%;
  background: #1e3a5f;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.nav-mobile.open .nav-mobile-sheet {
  transform: translateX(0);
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  color: white;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile-links a:hover {
  color: #d4ff00;
}

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a2332;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Unlock card */
.unlock-card {
  border: 1px dashed rgba(30, 58, 95, 0.3);
  background: transparent;
  padding: 1rem;
  border-radius: 8px;
}

/* Locked nav links (gated features) */
.nav-link-locked {
  position: relative;
  cursor: not-allowed;
}

.nav-link-locked::after {
  content: '';
  font-size: 0.6em;
  margin-left: 2px;
}

@media (max-width: 768px) {
  .nav-mobile-toggle {
    display: block;
  }
  
  .nav-desktop {
    display: none !important;
  }
}

/* Hero Credibility (integrated) */
.hero-credibility {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 1.5rem 0;
  line-height: 1.6;
}

.hero-credibility strong {
  color: #CEDF24;
}

.hero-credibility-detail {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-link:hover {
  color: #CEDF24;
}

@media (max-width: 768px) {
  .hero-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
