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

:root {
  --primary: #ff1493;
  --secondary: #ffffff;
  --accent: #000000;
  --dark: #0d0b10;
  --light-pink: #ffe5f3;
  --shadow: 0 30px 80px rgba(255, 20, 147, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: radial-gradient(circle at top left, rgba(255, 20, 147, 0.15), rgba(255, 255, 255, 0));
  color: var(--dark);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4vw;
}

nav .logo {
  font-weight: 700;
  letter-spacing: 0.1em;
}

nav .menu {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

nav .menu a {
  font-weight: 600;
}

main {
  padding-bottom: 4rem;
}

.section {
  padding: 4rem 4vw;
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #ff1493 0%, #ff8adf 55%, #ffffff 100%);
  color: var(--secondary);
  border-radius: 40px;
  margin: 2rem auto;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
}

.hero-inner {
  position: relative;
  padding: 5rem 2rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin: 1rem 0 2rem;
}

.hero .cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta {
  border: none;
  font-size: 1rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
}

.cta.primary {
  background: #fff;
  color: #ff1493;
  animation: pulse 2.8s ease-in-out infinite;
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--secondary);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta:hover {
  transform: translateY(-4px) scale(1.02);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 40px 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.6);
  }
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  color: var(--primary);
}

.subtitle {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--secondary);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 45px rgba(255, 20, 147, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.service-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}

.service-card .card-cta {
  margin-top: auto;
  align-self: flex-start;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  cursor: pointer;
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--secondary);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 20, 147, 0.2);
}

.faq-item h3 {
  margin: 0;
  font-size: 1.2rem;
}

.faq-item p {
  margin: 0.5rem 0 0;
  color: rgba(0, 0, 0, 0.7);
}

footer {
  margin-top: 3rem;
  background: #0d0b10;
  color: var(--secondary);
  padding: 3rem 4vw;
}

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

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 180px;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: none;
}

.newsletter-form button {
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.4rem;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  cursor: pointer;
}

.waiting-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.waiting-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.waiting-form input,
.waiting-form select,
.waiting-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-family: inherit;
}

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

.waiting-form .urgency {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.waiting-form .urgency label {
  font-weight: 500;
}

.waiting-form button[type='submit'] {
  border: none;
  background: var(--primary);
  color: var(--secondary);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.download-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.map-placeholder {
  background: linear-gradient(120deg, rgba(255, 20, 147, 0.25), rgba(0, 0, 0, 0.05));
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  border: 2px dashed rgba(255, 20, 147, 0.6);
  font-weight: 600;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
