/* ================================================
   Travel Creator Academy - Modern Minimalist Design
   ================================================ */

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

:root {
  --color-primary: #1695a0;
  --color-secondary: #f4c78b;
  --color-bg-light: #f7f4f2;
  --color-white: #f7f4f2;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Lora', Georgia, serif;
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ================================================
   TOP NAVIGATION
   ================================================ */

.top-nav {
  background: var(--color-white);
  border-bottom: 2px solid #d0d0d0;
  padding: 1rem 0;
  position: relative;
  z-index: 999;
}

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

.top-nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.top-nav-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.top-nav-menu a:hover {
  color: var(--color-primary);
}

/* ================================================
   STICKY HEADER
   ================================================ */

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(247, 244, 242, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid #d0d0d0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.sticky-header.visible {
  transform: translateY(0);
}

.sticky-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sticky-countdown {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.sticky-countdown-label {
  font-weight: 600;
  white-space: nowrap;
}

.sticky-countdown-time {
  display: flex;
  gap: 0.4rem;
}

.sticky-countdown-item {
  background: linear-gradient(135deg, #fff5f5, #fff0f0);
  color: #dc3545;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.9rem;
  min-width: 45px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #ffcccc;
  font-variant-numeric: tabular-nums;
}

.sticky-cta {
  margin-left: auto;
}

.sticky-cta .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ================================================
   Layout & Container
   ================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.spacer {
  margin-top: var(--header-height);
}

/* ================================================
   Typography
   ================================================ */

h1,
h2,
h3,
h4 {
  color: var(--color-primary);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
}

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

/* ================================================
   Buttons - Modern Design
   ================================================ */

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #137a84);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(22, 149, 160, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 149, 160, 0.4);
}

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

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

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

/* ================================================
   Hero Section - Minimalist
   ================================================ */

header {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%);
  padding: 3rem 0 1rem;
}

.hero {
  text-align: center;
  padding: 0 0 1rem;
}

.pro {
  background-color: #f7f4f2;
}

/* Hero intro s fotkou */
.hero-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro-simple {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

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

.hero-decorative-center img {
  max-width: 350px;
  height: auto;
}

.hero-profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--color-white);
}

.hero-greeting {
  text-align: left;
}

.hero-greeting h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.hero-greeting p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-light);
  margin: 0;
}

/* Dekorativní zeměkoule - uvnitř hero-intro vpravo */
.hero-decorative {
  display: flex;
  align-items: center;
  pointer-events: none;
  flex-shrink: 0;
}

.hero-decorative img {
  max-width: 100px;
  height: auto;
}

/* Letadlo pod hero-intro */
.hero-plane {
  text-align: center;
  margin: 0 auto 2rem;
  pointer-events: none;
}

.hero-plane img {
  max-width: 140px;
  height: auto;
  transform: rotate(-5deg);
}

/* Zajisti že intro obsah je nad dekorací */
.hero-intro>* {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-secondary), #e8b870);
  color: var(--color-text);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ================================================
   Modern Countdown Design - FOMO Edition
   ================================================ */

.countdown-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem auto;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(220, 53, 69, 0.15);
  /* Reddish shadow for urgency */
  border: 2px solid #ffebeb;
}

.countdown-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1695a0;
  /* Red color for urgency */
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.countdown-item {
  background: linear-gradient(135deg, #fff5f5, #fff0f0);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  text-align: center;
  border: 1px solid #ffcccc;
  position: relative;
  overflow: hidden;
}

.countdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

.countdown-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #dc3545;
  line-height: 1;
  margin-bottom: 0.2rem;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  display: block;
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.countdown-ended {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #d9534f;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fee, #fdd);
  border-radius: var(--radius-md);
}

.countdown-note {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0;
  font-weight: 500;
}

/* ================================================
   Sections - Compact & Modern
   ================================================ */

section {
  padding: 3rem 0;
  border-bottom: 1px solid #e8e8e8;
}

section:last-of-type {
  border-bottom: none;
}

section:nth-child(even) {
  background-color: var(--color-bg-light);
}

section:nth-child(odd) {
  background-color: var(--color-white);
}

/* ================================================
   Cards - Cleaner Design
   ================================================ */

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-highlight {
  background: linear-gradient(135deg, var(--color-secondary), #e8b870);
  border: none;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

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

/* Compact module cards */
.module-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0.7;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.module-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.module-card h3 {
  color: var(--color-primary);
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.4;
}

/* ================================================
   Lists - Compact
   ================================================ */

ul {
  list-style: none;
  margin: 0.8rem 0;
}

ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  position: relative;
  line-height: 1.6;
}

ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.bonus-list li::before {
  content: "🎁";
  font-size: 1rem;
}

.not-for-you-list li::before {
  content: "✕";
  color: #dc3545;
  /* Red color for cross */
}

/* ================================================
   FAQ - Accordion Style
   ================================================ */

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

.faq-answer {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer p {
  margin-bottom: 0.8rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ================================================
   Price Box - Modern Gradient
   ================================================ */

.price-box {
  background: linear-gradient(135deg, #1695a0 0%, #0d6b74 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 550px;
  box-shadow: 0 10px 40px rgba(22, 149, 160, 0.3);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.price-box h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
  position: relative;
  z-index: 1;
}

.price-strikethrough {
  text-decoration: line-through;
  font-size: 1.3rem;
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

.price-note {
  font-size: 0.95rem;
  margin-top: 1rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* ================================================
   Highlight & Guarantee Boxes
   ================================================ */

.highlight-box {
  background: linear-gradient(135deg, var(--color-secondary), #e8b870);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}

.guarantee-box {
  background: linear-gradient(135deg, #e8f5f6, #d0ebee);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  margin: 2rem 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.guarantee-box strong {
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* ================================================
   Video Reviews
   ================================================ */

.nav-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.video-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.review-stars {
  color: #FFD700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-score {
  background: rgba(22, 149, 160, 0.1);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-link {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: rgba(22, 149, 160, 0.05);
  transition: all 0.3s ease;
}

.video-link:hover {
  background-color: rgba(22, 149, 160, 0.1);
  transform: translateY(-2px);
}

/* ================================================
   Value Comparison Box
   ================================================ */

.value-comparison-box {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-secondary);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
}

.value-row:last-of-type {
  border-bottom: none;
}

.value-row.highlight {
  background: linear-gradient(135deg, rgba(244, 199, 139, 0.1), rgba(232, 184, 112, 0.1));
  margin: 0 -2rem;
  padding: 1rem 2rem;
  border-bottom: none;
}

.value-label {
  color: var(--color-text);
  font-weight: 500;
}

.value-amount {
  font-weight: 700;
}

.value-amount.strikethrough {
  text-decoration: line-through;
  color: var(--color-text-light);
  font-size: 1.2rem;
}

.value-amount.primary {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.value-note {
  margin-top: 1rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ================================================
   Footer
   ================================================ */

footer {
  background: #2d3748;
  color: #cbd5e0;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

footer p {
  margin: 0.4rem 0;
  font-size: 0.9rem;
}

/* ================================================
   Utility Classes
   ================================================ */

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* ================================================
   Mobile Optimization
   ================================================ */

@media (max-width: 768px) {
  :root {
    --header-height: auto;
  }

  .top-nav {
    padding: 0.8rem 0;
  }

  .top-nav-content {
    padding: 0 1rem;
  }

  .top-nav-logo {
    font-size: 1.1rem;
    margin: 0 auto;
  }

  .top-nav-menu {
    display: none;
  }

  .hero-intro {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    min-height: 200px;
  }

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

  .hero-profile-img {
    width: 100px;
    height: 100px;
    border: 3px solid var(--color-white);
  }

  .hero-decorative {
    display: none;
  }

  .hero-plane {
    margin: 1.5rem auto 2rem;
  }

  .hero-plane img {
    max-width: 120px;
  }

  .sticky-header-content {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
  }

  .sticky-countdown {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
  }

  .sticky-countdown-time {
    gap: 0.3rem;
    flex-wrap: wrap;
  }

  .sticky-countdown-item {
    min-width: 40px;
    padding: 0.25rem 0.4rem;
    font-size: 0.75rem;
  }

  .sticky-cta {
    width: 100%;
    margin-left: 0;
  }

  .sticky-cta .btn {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .countdown-item {
    padding: 1rem 0.6rem;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2.2rem;
  }

  .button-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 2rem 0;
  }

  .two-column,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-images {
    gap: 1.5rem;
  }

  .hero-images img {
    max-width: 150px;
  }

  .hero-images .profile-img {
    max-width: 120px;
  }

  .module-card {
    padding: 1.2rem;
  }

  .card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  body {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .container,
  .container-narrow {
    padding: 0 1rem;
  }

  header {
    padding: 2rem 0 0.5rem;
  }

  .hero h1 {
    padding: 0 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .countdown-wrapper {
    padding: 1.2rem 0.8rem;
    margin: 1.5rem auto;
  }

  .countdown-text {
    font-size: 0.85rem;
  }

  .countdown-number {
    font-size: 1.3rem;
  }

  .countdown-label {
    font-size: 0.7rem;
  }

  .countdown-item {
    padding: 0.8rem 0.4rem;
  }

  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .price-box {
    padding: 1.5rem 1rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .value-comparison-box {
    padding: 1rem;
  }

  .module-card {
    padding: 1rem;
  }

  .module-header {
    gap: 0.7rem;
  }

  .module-icon {
    font-size: 1.5rem;
  }

  .module-card h3 {
    font-size: 1rem;
  }

  .module-card ul li {
    font-size: 0.9rem;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .card {
    padding: 1.2rem;
  }

  section {
    padding: 1.5rem 0;
  }

  .video-card {
    padding: 1rem;
  }

  .review-stars {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }

  .review-score {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }

  .faq-item {
    padding: 1rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .sticky-header-content {
    padding: 0.5rem 0.8rem;
  }

  .sticky-countdown-label {
    font-size: 0.7rem;
  }

  .sticky-countdown-time span {
    font-size: 0.75rem;
  }

  .hero-decorative-center img {
    max-width: 220px;
  }

  .hero-plane img {
    max-width: 100px;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* ================================================
   Smooth Animations
   ================================================ */

@media (prefers-reduced-motion: no-preference) {
  .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* ================================================
   Email Subscription Form
   ================================================ */

.email-form-wrapper {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #f4c78b54;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(22, 149, 160, 0.2);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-form h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.subscribe-form p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.form-row-names {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 0.75rem;
}

.form-row-names input[type="text"] {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 2px solid rgba(22, 149, 160, 0.3);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-row-names input[type="text"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(22, 149, 160, 0.15);
}

.form-row-names input[type="text"]::placeholder {
  color: #999;
}

.form-fields {
  margin-bottom: 0.5rem;
}

.form-row input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.2rem;
  border: 2px solid rgba(22, 149, 160, 0.3);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-row input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(22, 149, 160, 0.15);
}

.form-row input[type="email"]::placeholder {
  color: #999;
}

.form-row .btn {
  white-space: nowrap;
}

.form-note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1rem;
  margin-bottom: 0;
}

.form-success {
  padding: 1.5rem;
}

.form-success p {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0;
}

.form-error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .email-form-wrapper {
    padding: 1.5rem;
  }

  .form-row,
  .form-row-names {
    flex-direction: column;
  }

  .form-row input[type="email"],
  .form-row-names input[type="text"] {
    width: 100%;
  }

  .form-row .btn {
    width: 100%;
  }
}