/* ===== CSS Variables ===== */
:root {
  --color-primary: #03ab83;
  --color-primary-dark: #006a5c;
  --color-primary-light: #60bf9a;
  --color-primary-bg: #edfaf6;
  --color-accent: #c97a0a;
  --color-accent-light: #ede397;
  --color-dark: #0d1b2a;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-white: #ffffff;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-border: #e2e8f0;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul {
  list-style: none;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
.highlight {
  color: var(--color-primary);
  position: relative;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(77, 184, 154, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77, 184, 154, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: 10px 20px;
}

.btn-ghost:hover {
  color: var(--color-primary);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

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

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.logo-wewi {
  color: var(--color-white);
  transition: var(--transition);
}

.logo-go {
  color: var(--color-accent-light);
  transition: var(--transition);
}

.navbar.scrolled .logo-wewi {
  color: var(--color-primary-dark);
}

.navbar.scrolled .logo-go {
  color: var(--color-accent);
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .nav-link {
  color: var(--color-text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-actions .btn-ghost {
  color: var(--color-text);
}

.nav-actions .btn-primary {
  padding: 10px 24px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-dark);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.85) 0%, rgba(26, 122, 109, 0.7) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 0 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent-light);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--color-primary-light);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

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

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  display: inline;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary-light);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: rgba(255, 255, 255, 0.6);
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-bg);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== Destinations Grid ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.destination-card--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.destination-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card--large .destination-img {
  min-height: 500px;
}

.destination-card:hover .destination-img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.destination-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.destination-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.destination-card--large .destination-info h3 {
  font-size: 28px;
}

.destination-info p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.destination-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.destination-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== Features Grid ===== */
.features {
  background: var(--color-gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--color-white);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: var(--color-gray-50);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card:hover .step-number {
  opacity: 1;
}

.step-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.step-connector {
  flex-shrink: 0;
}

/* ===== App Preview ===== */
.app-preview {
  background: var(--color-dark);
  overflow: hidden;
}

.app-preview .section-tag {
  background: rgba(3, 171, 131, 0.15);
  color: var(--color-primary-light);
}

.app-preview .section-title {
  color: var(--color-white);
}

.app-preview .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.app-preview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Tabs (left side) */
.app-preview-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-tab {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  font-family: var(--font-family);
}

.app-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.app-tab.active {
  background: rgba(3, 171, 131, 0.12);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(3, 171, 131, 0.1);
}

.app-tab-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.app-tab.active .app-tab-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
}

.app-tab-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  transition: var(--transition);
}

.app-tab.active .app-tab-text h4 {
  color: var(--color-white);
}

.app-tab-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
  transition: var(--transition);
}

.app-tab.active .app-tab-text p {
  color: rgba(255, 255, 255, 0.55);
}

/* Phone (right side) */
.app-phone-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.app-phone {
  width: 280px;
  height: 580px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(3, 171, 131, 0.08);
}

.app-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.app-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--color-gray-50);
}

.app-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(1.02);
}

.app-screen.active {
  opacity: 1;
  transform: scale(1);
}

.app-phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(3, 171, 131, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

/* App Preview responsive */
@media (max-width: 900px) {
  .app-preview-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-preview-tabs {
    order: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .app-tab {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 8px;
    gap: 8px;
  }

  .app-tab-text p {
    display: none;
  }

  .app-tab-text h4 {
    font-size: 13px;
  }

  .app-phone-wrapper {
    order: 1;
  }
}

@media (max-width: 560px) {
  .app-preview-tabs {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .app-tab {
    padding: 10px 6px;
  }

  .app-tab-icon {
    width: 36px;
    height: 36px;
  }

  .app-tab-icon svg {
    width: 18px;
    height: 18px;
  }

  .app-tab-text h4 {
    font-size: 11px;
  }

  .app-phone {
    width: 240px;
    height: 500px;
    border-radius: 30px;
  }

  .app-phone-screen {
    border-radius: 20px;
  }
}

/* ===== Stories ===== */
.stories {
  background: var(--color-gray-50);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.story-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
}

.story-content {
  padding: 24px;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--color-primary-bg);
}

.story-author h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
}

.story-author span {
  font-size: 13px;
  color: var(--color-text-light);
}

.story-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.story-content p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.story-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-light);
}

/* ===== Pricing ===== */
.pricing {
  background: var(--color-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 2px solid var(--color-border);
  transition: var(--transition);
  position: relative;
}

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

.pricing-card--popular {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.pricing-card--popular:hover {
  transform: scale(1.05) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--color-text-light);
  font-weight: 400;
}

.pricing-features {
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--color-text);
}

.pricing-features li.disabled {
  color: var(--color-gray-300);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 0;
  background: var(--color-gray-50);
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cta-content h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content h2 .highlight {
  color: var(--color-accent-light);
}

.cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.newsletter-form .form-group {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 15px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
}

.newsletter-form .btn-primary {
  background: var(--color-white);
  color: var(--color-primary-dark);
  box-shadow: none;
  flex-shrink: 0;
}

.newsletter-form .btn-primary:hover {
  background: var(--color-accent-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-hint {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.cta-decoration {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

/* ===== Contact ===== */
.contact {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 15px;
  color: var(--color-text-light);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.contact-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: var(--transition);
}

.contact-socials a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.contact-form {
  background: var(--color-gray-50);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

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

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

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(77, 184, 154, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-gray-300);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-dark);
  padding: 64px 0 0;
}

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

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

.footer-brand .logo-wewi {
  color: var(--color-white);
}

.footer-brand .logo-go {
  color: var(--color-accent-light);
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

/* ===== Policy Page ===== */
.policy-page {
  padding: 120px 0 80px;
}

.policy-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.policy-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.policy-updated {
  font-size: 15px;
  color: var(--color-text-light);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary-bg);
}

.policy-section h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 20px 0 10px;
}

.policy-section p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-section ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}

.policy-section ul li {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 8px;
}

.policy-section ul.contact-list {
  list-style: none;
  margin-left: 0;
}

.policy-section a {
  color: var(--color-primary);
  font-weight: 500;
}

.policy-section a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .destination-card--large .destination-img {
    min-height: 350px;
  }

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

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

  .stories-grid .story-card:last-child {
    grid-column: 1 / 3;
  }

  .pricing-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    gap: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.active .nav-link {
    color: var(--color-text);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 24px;
  }

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

  .destination-card--large {
    grid-column: auto;
  }

  .destination-card--large .destination-img {
    min-height: 280px;
  }

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

  .steps-grid {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
  }

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

  .stories-grid .story-card:last-child {
    grid-column: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card--popular {
    transform: none;
  }

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

  .cta-card {
    padding: 40px 28px;
  }

  .newsletter-form .form-group {
    flex-direction: column;
  }

  .cta-decoration {
    display: none;
  }

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

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

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}
