:root {
  --primary: #e63946;
  --primary-dark: #d62839;
  --secondary: #457b9d;
  --accent: #f1faee;
  --dark: #1d3557;
  --text: #2b2d42;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --gradient: linear-gradient(135deg, #e63946 0%, #d62839 100%);
  --gradient-secondary: linear-gradient(135deg, #457b9d 0%, #1d3557 100%);
}

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

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.logo-image {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

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

.btn-small {
  padding: 10px 24px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .navbar-links a:not(.btn) {
    display: none;
  }

  .navbar-links {
    gap: 16px;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: #f3f4f6;
  background-image: radial-gradient(
    ellipse at top left,
    #f8f9fa 0%,
    #f3f4f6 50%,
    #f1faee 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('promo-bg.png');
  background-size: cover;
  opacity: 0.25;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(230, 57, 70, 0.03) 0%,
    rgba(230, 57, 70, 0.015) 40%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
  z-index: 2;
  position: relative;
}

@media (max-width: 1023px) {
  .hero-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(3deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-3deg);
  }
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 32px;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-secondary:hover {
  background: var(--text);
  color: white;
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  animation: slideUp 0.8s ease-out 0.8s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.stat-label {
  font-size: 14px;
  color: var(--text-light);
}

.hero-visual {
  flex: 1;
  position: relative;
  height: 600px;
  min-width: 500px;
}

@media (max-width: 1023px) {
  .hero-visual {
    display: none;
  }
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
  width: 280px;
  top: 50px;
  right: 100px;
  animation-delay: 0s;
}

.card-2 {
  width: 260px;
  top: 250px;
  right: 50px;
  animation-delay: 2s;
}

.card-3 {
  width: 240px;
  top: 150px;
  right: 350px;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.card-image {
  height: 180px;
  background: linear-gradient(135deg, #e63946 0%, #457b9d 100%);
  background-size: cover;
  background-position: center;
}

.card-1 .card-image {
  background-image: url('https://images.unsplash.com/photo-1509356843151-3e7d96241e11?w=600&q=80');
}

.card-2 .card-image {
  background-image: url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=600&q=80');
}

.card-3 .card-image {
  background-image: url('https://images.unsplash.com/photo-1534190239940-9ba8944ea261?w=600&q=80');
}

.card-content {
  padding: 16px;
}

.card-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}

.card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-light);
}

.features {
  padding: 120px 24px;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 400px;
  margin: 0 auto;
}

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

.feature-card {
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 16px;
  color: white;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-description {
  color: var(--text-light);
  line-height: 1.7;
}

.how-it-works {
  padding: 120px 24px;
  background: var(--bg-alt);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 80px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .step {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-title {
  font-size: 28px;
  font-weight: 700;
}

.step-description {
  color: var(--text-light);
  line-height: 1.7;
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
}

.mockup-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg-alt);
  border-radius: 50px;
  color: var(--text-light);
  width: 100%;
}

.map-mockup {
  position: relative;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
}

.map-pins {
  width: 100%;
  height: 150px;
  position: relative;
}

.map-pin {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
  animation: bounce 2s ease-in-out infinite;
}

.pin-1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.pin-2 {
  top: 50%;
  left: 60%;
  animation-delay: 0.5s;
}

.pin-3 {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

@keyframes bounce {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-10px);
  }
}

.plan-mockup {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.plan-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: 12px;
  width: 100%;
}

.plan-check {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.social-proof {
  padding: 120px 24px;
  background: white;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial {
  padding: 40px;
  background: var(--bg-alt);
  border-radius: 16px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text);
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.author-name {
  font-weight: 700;
  color: var(--text);
}

.author-role {
  font-size: 14px;
  color: var(--text-light);
}

.cta {
  padding: 120px 24px;
  background: linear-gradient(135deg, var(--dark) 0%, #2b2d42 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-title .gradient-text {
  background: linear-gradient(135deg, #e63946 0%, #f1faee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.footer {
  padding: 80px 24px 40px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

.footer-column h4 {
  color: white;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-wrapper {
    padding-top: 20px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

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

  .features,
  .how-it-works,
  .social-proof,
  .cta {
    padding: 80px 24px;
  }

  .section-header {
    margin-bottom: 48px;
  }

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

  .steps {
    gap: 60px;
  }
}
