/**
 * Table Mountain Aerial Cableway — Premium Theme
 */

:root {
  --tm-primary: #1a3a5c;
  --tm-primary-dark: #0e2240;
  --tm-primary-light: #2a5a8c;
  --tm-accent: #d4a853;
  --tm-accent-dark: #b8912e;
  --tm-gold: #d4a853;
  --tm-red: #c0392b;
  --tm-blue: #2980b9;
  --tm-teal: #1abc9c;

  --tm-white: #ffffff;
  --tm-off-white: #fafafa;
  --tm-cream: #f5f5f5;
  --tm-gray-100: #f8f9fa;
  --tm-gray-200: #e9ecef;
  --tm-gray-300: #dee2e6;
  --tm-gray-500: #6c757d;
  --tm-gray-700: #495057;
  --tm-gray-900: #212529;
  --tm-black: #0a0a0a;

  --tm-font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --tm-font-display: 'Playfair Display', Georgia, serif;

  --tm-container: 1200px;
  --tm-gap: 24px;

  --tm-shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --tm-shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --tm-shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --tm-shadow-xl: 0 16px 48px rgba(0,0,0,.2);

  --tm-ease: cubic-bezier(.4,0,.2,1);
  --tm-duration: .3s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--tm-font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tm-gray-900);
  background: var(--tm-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all var(--tm-duration) var(--tm-ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.tm-container {
  width: 100%;
  max-width: var(--tm-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 83, 0.3); }
  50% { box-shadow: 0 0 40px rgba(212, 168, 83, 0.6); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== PROMO BANNER ===== */
.tm-promo-banner {
  background: linear-gradient(90deg, #8b1a1a, var(--tm-red), #962323, var(--tm-red), #8b1a1a);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
  color: var(--tm-white);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.tm-promo-banner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  animation: shimmer 3s infinite;
}

.tm-promo-banner__icon { font-size: 20px; }

.tm-promo-banner__text {
  font-weight: 700; font-size: 13px;
  letter-spacing: .5px; text-transform: uppercase;
}

.tm-promo-banner__discount {
  background: linear-gradient(135deg, var(--tm-gold) 0%, var(--tm-accent-dark) 100%);
  color: var(--tm-gray-900);
  padding: 6px 16px; border-radius: 6px;
  font-weight: 800; font-size: 12px; letter-spacing: .3px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 2px 10px rgba(212, 168, 83, 0.4);
}

.tm-promo-banner__timer {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  background: rgba(0,0,0,.2);
  padding: 6px 12px; border-radius: 6px;
}

.tm-promo-banner__timer span:last-child {
  font-family: 'SF Mono', Monaco, monospace;
  font-weight: 700; font-size: 14px; min-width: 48px;
}

/* ===== HEADER ===== */
.tm-header {
  background: var(--tm-primary-dark);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--tm-shadow-sm);
  border-bottom: 2px solid var(--tm-gold);
}

.tm-header__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px; padding: 12px 20px;
}

.tm-header__logo img {
  height: 48px; width: auto;
}

.tm-header__nav {
  display: flex; align-items: center; gap: 8px;
}

.tm-header__link {
  font-weight: 600; font-size: 14px;
  color: rgba(255,255,255,.8);
  padding: 10px 16px; border-radius: 8px;
  transition: all var(--tm-duration) var(--tm-ease);
}

.tm-header__link:hover {
  color: var(--tm-gold);
  background: rgba(255,255,255,.1);
}

.tm-header__link--active {
  color: var(--tm-gold);
  font-weight: 700;
}

.tm-header__actions { display: flex; align-items: center; gap: 12px; }

.tm-header__menu {
  display: none; flex-direction: column;
  gap: 5px; width: 24px; padding: 4px;
}

.tm-header__menu span {
  display: block; width: 100%; height: 2px;
  background: var(--tm-white);
  border-radius: 2px;
  transition: all var(--tm-duration) var(--tm-ease);
}

/* ===== BUTTONS ===== */
.tm-btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 8px;
  font-weight: 700; font-size: 14px;
  border-radius: 8px; padding: 12px 24px;
  transition: all var(--tm-duration) var(--tm-ease);
  white-space: nowrap;
}

.tm-btn--primary {
  background: linear-gradient(135deg, var(--tm-accent) 0%, var(--tm-accent-dark) 100%);
  color: var(--tm-gray-900);
  box-shadow: 0 4px 12px rgba(212, 168, 83, .3);
}

.tm-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, .4);
}

.tm-btn--secondary {
  background: linear-gradient(135deg, var(--tm-primary) 0%, var(--tm-primary-dark) 100%);
  color: var(--tm-white);
  box-shadow: 0 4px 12px rgba(26, 58, 92, .3);
}

.tm-btn--sm { padding: 8px 16px; font-size: 13px; }
.tm-btn--lg { padding: 16px 32px; font-size: 16px; }

/* ===== HERO ===== */
.tm-hero {
  position: relative; min-height: 600px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--tm-primary-dark) 0%, #081828 100%);
  overflow: hidden;
}

.tm-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}

.tm-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: .4;
}

.tm-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,34,64,.85) 0%, rgba(0,0,0,.6) 100%);
}

.tm-hero__content {
  position: relative; z-index: 1;
  max-width: 800px; padding: 60px 0;
}

.tm-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color: var(--tm-gold);
  padding: 10px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.2);
  animation: fadeInUp 0.8s var(--tm-ease) forwards, glow 3s ease-in-out infinite;
}

.tm-hero__title {
  font-family: var(--tm-font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700; color: var(--tm-white);
  line-height: 1.1; margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--tm-ease) 0.1s forwards;
  opacity: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.tm-hero__title span {
  display: block; color: var(--tm-gold);
  font-size: clamp(28px, 4vw, 40px);
}

.tm-hero__subtitle {
  font-size: 18px; color: rgba(255,255,255,.85);
  line-height: 1.7; margin-bottom: 32px; max-width: 600px;
  animation: fadeInUp 0.8s var(--tm-ease) 0.2s forwards;
  opacity: 0;
}

.tm-hero__cta-row {
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--tm-ease) 0.3s forwards;
  opacity: 0;
}

.tm-hero__features {
  display: flex; gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  animation: fadeInUp 0.8s var(--tm-ease) 0.4s forwards;
  opacity: 0;
}

.tm-hero__feature {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.9); font-size: 14px; font-weight: 500;
}

.tm-hero__feature-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tm-gold); color: var(--tm-gray-900);
  border-radius: 50%; font-size: 12px; font-weight: 700;
}

/* ===== SECTIONS ===== */
.tm-section { padding: 80px 0; }
.tm-section--alt { background: var(--tm-cream); }
.tm-section--dark { background: var(--tm-primary-dark); color: var(--tm-white); }

.tm-section__header {
  text-align: center; max-width: 700px;
  margin: 0 auto 48px;
}

.tm-section__label {
  display: inline-block; font-size: 12px;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--tm-accent);
  margin-bottom: 12px;
}

.tm-section__title {
  font-family: var(--tm-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; color: var(--tm-gray-900);
  margin-bottom: 16px;
}

.tm-section__subtitle {
  font-size: 17px; color: var(--tm-gray-500); line-height: 1.7;
}

/* ===== TICKET CARDS ===== */
.tm-tickets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tm-ticket {
  background: var(--tm-white);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s var(--tm-ease);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}

.tm-ticket:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.tm-ticket:hover .tm-ticket__image img {
  transform: scale(1.1);
}

.tm-ticket__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--tm-primary);
  color: var(--tm-white);
  padding: 6px 14px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; z-index: 2;
}

.tm-ticket__badge--hot { background: var(--tm-red); }
.tm-ticket__badge--vip { background: var(--tm-gold); color: var(--tm-gray-900); }

.tm-ticket__discount {
  position: absolute; top: 16px; right: 16px;
  background: var(--tm-red); color: var(--tm-white);
  padding: 6px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 700; z-index: 2;
}

.tm-ticket__image {
  position: relative; height: 180px;
  background: linear-gradient(135deg, var(--tm-primary-dark), var(--tm-primary));
  overflow: hidden;
}

.tm-ticket__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--tm-ease);
}

.tm-ticket__image::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  pointer-events: none;
}

.tm-ticket__body { padding: 24px; }
.tm-ticket__icon { font-size: 28px; margin-bottom: 12px; }

.tm-ticket__title {
  font-family: var(--tm-font-display);
  font-size: 22px; font-weight: 700;
  color: var(--tm-gray-900); margin-bottom: 8px;
}

.tm-ticket__desc {
  font-size: 14px; color: var(--tm-gray-500); margin-bottom: 16px;
}

.tm-ticket__features { list-style: none; margin-bottom: 20px; }

.tm-ticket__feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--tm-gray-700); padding: 6px 0;
}

.tm-ticket__feature::before {
  content: '✓'; color: var(--tm-teal); font-weight: 700;
}

.tm-ticket__pricing {
  border-top: 1px solid var(--tm-gray-200);
  padding-top: 16px; margin-bottom: 16px;
}

.tm-ticket__price-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 8px 0;
}

.tm-ticket__price-label { font-size: 13px; color: var(--tm-gray-500); }

.tm-ticket__price-value {
  display: flex; align-items: center; gap: 8px;
}

.tm-ticket__price-original {
  font-size: 13px; color: var(--tm-gray-300);
  text-decoration: line-through;
}

.tm-ticket__price-current {
  font-size: 20px; font-weight: 800; color: var(--tm-red);
}

.tm-ticket__cta {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--tm-primary) 0%, var(--tm-primary-dark) 100%);
  color: var(--tm-white);
  font-weight: 700; font-size: 14px;
  border-radius: 12px;
  transition: all var(--tm-duration) var(--tm-ease);
  position: relative; overflow: hidden;
  text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(26, 58, 92, 0.25);
}

.tm-ticket__cta::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left 0.5s ease;
}

.tm-ticket__cta:hover::before { left: 100%; }

.tm-ticket__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 58, 92, 0.35);
}

/* ===== EXPERIENCES ===== */
.tm-experiences {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.tm-experience {
  background: var(--tm-white);
  border-radius: 20px; padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s var(--tm-ease);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
}

.tm-experience::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tm-primary), var(--tm-gold));
  transform: scaleX(0);
  transition: transform 0.4s var(--tm-ease);
}

.tm-experience:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.tm-experience:hover::before { transform: scaleX(1); }

.tm-experience:hover .tm-experience__icon {
  transform: scale(1.15) rotate(5deg);
}

.tm-experience__icon {
  font-size: 48px; margin-bottom: 20px;
  transition: transform 0.4s var(--tm-ease);
  display: inline-block;
}

.tm-experience__title {
  font-weight: 700; font-size: 18px;
  color: var(--tm-gray-900); margin-bottom: 10px;
}

.tm-experience__desc {
  font-size: 14px; color: var(--tm-gray-500); line-height: 1.6;
}

/* ===== BENEFITS ===== */
.tm-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.tm-benefit {
  text-align: center; padding: 32px 24px;
  border-radius: 20px;
  transition: all 0.4s var(--tm-ease);
  background: rgba(255,255,255,0.6);
}

.tm-benefit:hover {
  background: var(--tm-white);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.tm-benefit:hover .tm-benefit__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(212, 168, 83, .4);
}

.tm-benefit__icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--tm-accent), var(--tm-accent-dark));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(212, 168, 83, .3);
  transition: all 0.4s var(--tm-ease);
}

.tm-benefit__title {
  font-weight: 700; font-size: 16px;
  color: var(--tm-gray-900); margin-bottom: 8px;
}

.tm-benefit__desc {
  font-size: 14px; color: var(--tm-gray-500);
}

/* ===== STEPS ===== */
.tm-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; align-items: start;
}

.tm-step {
  text-align: center; position: relative;
  padding: 24px; border-radius: 20px;
  transition: all 0.4s var(--tm-ease);
}

.tm-step:hover {
  background: var(--tm-white);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.tm-step:hover .tm-step__number {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(26, 58, 92, 0.3);
}

.tm-step__number {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--tm-primary) 0%, var(--tm-primary-dark) 100%);
  color: var(--tm-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  box-shadow: 0 6px 20px rgba(26, 58, 92, 0.25);
  transition: all 0.4s var(--tm-ease);
}

.tm-step__title {
  font-weight: 700; font-size: 16px;
  color: var(--tm-gray-900); margin-bottom: 8px;
}

.tm-step__desc { font-size: 14px; color: var(--tm-gray-500); }

.tm-step__arrow {
  position: absolute; right: -32px; top: 24px;
  color: var(--tm-gray-300); font-size: 20px;
}

.tm-step:last-child .tm-step__arrow { display: none; }

/* ===== CTA ===== */
.tm-cta {
  background: linear-gradient(135deg, var(--tm-primary-dark) 0%, #061420 50%, var(--tm-primary-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}

.tm-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212,168,83,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(26,58,92,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.tm-cta__title {
  font-family: var(--tm-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; color: var(--tm-white);
  margin-bottom: 16px;
}

.tm-cta__subtitle {
  font-size: 18px; color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

.tm-cta__timer {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1);
  padding: 12px 24px; border-radius: 100px;
  color: var(--tm-white); font-size: 14px;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,.2);
}

.tm-cta__timer-value {
  font-family: 'SF Mono', Monaco, monospace;
  font-weight: 700; font-size: 18px; color: var(--tm-gold);
}

.tm-cta__buttons {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.tm-footer {
  background: linear-gradient(180deg, var(--tm-gray-900) 0%, #0a0a0a 100%);
  color: var(--tm-white);
  padding: 80px 0 32px;
  position: relative;
}

.tm-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.3), transparent);
}

.tm-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}

.tm-footer__brand img,
.tm-footer__logo {
  height: 56px; margin-bottom: 20px;
  transition: all 0.3s var(--tm-ease);
}

.tm-footer__brand:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(212,168,83,0.3));
}

.tm-footer__desc {
  font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7;
}

.tm-footer__title {
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px; color: var(--tm-white);
}

.tm-footer__links { list-style: none; }

.tm-footer__link {
  display: block; font-size: 14px;
  color: rgba(255,255,255,.6); padding: 6px 0;
  transition: color var(--tm-duration) var(--tm-ease);
}

a.tm-footer__link:hover { color: var(--tm-gold); }

.tm-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}

.tm-footer__copy { font-size: 13px; color: rgba(255,255,255,.5); }

.tm-footer__payments {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tm-experiences, .tm-benefits, .tm-steps { grid-template-columns: repeat(2, 1fr); }
  .tm-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .tm-header__nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--tm-primary-dark);
    flex-direction: column; padding: 16px;
    box-shadow: var(--tm-shadow-lg);
  }
  .tm-header__nav.is-open { display: flex; }
  .tm-header__menu { display: flex; }

  .tm-hero { min-height: 500px; }
  .tm-hero__content { padding: 40px 0; }
  .tm-hero__features { flex-direction: column; gap: 16px; }

  .tm-section { padding: 60px 0; }

  .tm-experiences, .tm-benefits, .tm-steps { grid-template-columns: 1fr; }
  .tm-tickets { grid-template-columns: 1fr; }

  .tm-step__arrow { display: none !important; }

  .tm-footer__grid { grid-template-columns: 1fr; text-align: center; }
  .tm-footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .tm-promo-banner {
    padding: 10px 16px; gap: 6px; flex-direction: column;
  }
  .tm-promo-banner__icon { display: none; }
  .tm-promo-banner__text { font-size: 11px; }
  .tm-promo-banner__discount { padding: 5px 12px; font-size: 11px; }
  .tm-promo-banner__timer { padding: 4px 10px; font-size: 11px; gap: 6px; }
  .tm-promo-banner__timer span:last-child { font-size: 12px; min-width: 40px; }

  .tm-header__inner { padding: 10px 16px; }
  .tm-header__logo img { height: 36px; }
  .tm-header__actions .tm-btn { padding: 10px 16px; font-size: 12px; }

  .tm-hero { min-height: auto; }
  .tm-hero__content { padding: 32px 0 40px; text-align: center; max-width: 100%; }
  .tm-hero__badge { padding: 8px 16px; font-size: 11px; margin-bottom: 16px; }
  .tm-hero__title { font-size: 32px; margin-bottom: 8px; }
  .tm-hero__title span { font-size: 22px; }
  .tm-hero__subtitle { font-size: 14px; margin-bottom: 24px; padding: 0 8px; }
  .tm-hero__cta-row { text-align: center; }

  .tm-hero__features {
    gap: 10px; padding-top: 20px;
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .tm-hero__feature {
    font-size: 12px; gap: 6px; justify-content: center;
    background: rgba(255,255,255,.08); padding: 10px 12px; border-radius: 10px;
  }
  .tm-hero__feature-icon { width: 20px; height: 20px; font-size: 10px; }

  .tm-section { padding: 48px 0; }
  .tm-section__header { margin-bottom: 32px; }
  .tm-section__label { font-size: 11px; margin-bottom: 8px; }
  .tm-section__title { font-size: 26px; }
  .tm-section__subtitle { font-size: 14px; padding: 0 8px; }

  .tm-ticket { border-radius: 16px; margin: 0 4px; }
  .tm-ticket__image { height: 140px; }
  .tm-ticket__body { padding: 20px; }
  .tm-ticket__icon { font-size: 24px; margin-bottom: 8px; }
  .tm-ticket__title { font-size: 20px; }
  .tm-ticket__cta { padding: 14px; font-size: 13px; }

  .tm-experience { padding: 24px 20px; border-radius: 16px; }
  .tm-experience__icon { font-size: 36px; margin-bottom: 12px; }
  .tm-experience__title { font-size: 16px; }

  .tm-benefit { padding: 24px 16px; }
  .tm-benefit__icon { width: 56px; height: 56px; font-size: 24px; margin-bottom: 16px; }

  .tm-step { padding: 20px 16px; }
  .tm-step__number { width: 48px; height: 48px; font-size: 18px; margin-bottom: 16px; }

  .tm-cta { padding: 60px 0; }
  .tm-cta__title { font-size: 26px; padding: 0 16px; }
  .tm-cta__subtitle { font-size: 14px; padding: 0 16px; }
  .tm-cta__buttons { flex-direction: column; width: 100%; padding: 0 16px; }
  .tm-cta__buttons .tm-btn { width: 100%; }

  .tm-footer { padding: 48px 0 24px; }
  .tm-footer__brand img { height: 44px; margin: 0 auto 16px; }
  .tm-footer__bottom { flex-direction: column; gap: 12px; }
}
