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

:root {
  --pink: #FF4B8B;
  --orange: #FF9068;
  --gradient: linear-gradient(135deg, #FF4B8B, #FF9068);
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --light: #f9f9f9;
  --border: #eeeeee;
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

/* FLOATING PAWS */
.paws-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.paw {
  position: absolute;
  font-size: 24px;
  opacity: 0;
  animation: floatPaw linear infinite;
}

.paw:nth-child(1)  { left: 5%;  font-size: 48px; animation-duration: 12s; animation-delay: 0s;   }
.paw:nth-child(2)  { left: 12%; font-size: 64px; animation-duration: 16s; animation-delay: 2s;   }
.paw:nth-child(3)  { left: 22%; font-size: 40px; animation-duration: 10s; animation-delay: 5s;   }
.paw:nth-child(4)  { left: 35%; font-size: 56px; animation-duration: 14s; animation-delay: 1s;   }
.paw:nth-child(5)  { left: 48%; font-size: 52px; animation-duration: 18s; animation-delay: 3s;   }
.paw:nth-child(6)  { left: 58%; font-size: 72px; animation-duration: 11s; animation-delay: 7s;   }
.paw:nth-child(7)  { left: 68%; font-size: 44px; animation-duration: 15s; animation-delay: 0.5s; }
.paw:nth-child(8)  { left: 75%; font-size: 60px; animation-duration: 13s; animation-delay: 4s;   }
.paw:nth-child(9)  { left: 82%; font-size: 48px; animation-duration: 17s; animation-delay: 6s;   }
.paw:nth-child(10) { left: 88%; font-size: 56px; animation-duration: 12s; animation-delay: 2.5s; }
.paw:nth-child(11) { left: 93%; font-size: 40px; animation-duration: 19s; animation-delay: 8s;   }
.paw:nth-child(12) { left: 28%; font-size: 52px; animation-duration: 14s; animation-delay: 9s;   }

@keyframes floatPaw {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0;    }
  5%   { opacity: 0.15; }
  90%  { opacity: 0.1;  }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0;    }
}

nav, section, footer, .features, .cta-section {
  position: relative;
  z-index: 1;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-logo img {
  animation: float 3s ease-in-out infinite;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 18px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-cta {
  background: var(--gradient);
  color: white !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  opacity: 0.9;
  color: white !important;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s;
  white-space: nowrap;
}

.lang-btn:hover {
  background: #eee;
}

.lang-btn svg {
  stroke: var(--text);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  z-index: 200;
  min-width: 160px;
}

.lang-menu.open {
  display: block;
}

.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.lang-menu button:hover {
  background: var(--light);
}

.lang-menu button.lang-active {
  color: #C2005A;
  font-weight: 700;
  background: rgba(194,0,90,0.05);
}

.soon-badge {
  position: absolute;
  top: -10px;
  right: -4px;
  background: #1a1a1a;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.google-play-btn {
  background: #555 !important;
  cursor: pointer;
  position: relative;
}

.google-play-btn:hover {
  background: #444 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--gradient);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,75,139,0.35);
}

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

.btn-secondary:hover {
  background: var(--light);
}

/* HERO */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,75,139,0.08);
  color: var(--pink);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

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

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: white;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.appstore-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.appstore-btn svg {
  width: 22px;
  height: 22px;
  fill: white;
  flex-shrink: 0;
}

.appstore-btn-text {
  display: flex;
  flex-direction: column;
}

.appstore-btn-text small {
  font-size: 10px;
  opacity: 0.8;
  line-height: 1;
}

.appstore-btn-text strong {
  font-size: 16px;
  line-height: 1.2;
}

/* PHONE MOCKUP */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 340px;
  height: 700px;
  background: #1a1a1a;
  border-radius: 50px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  position: relative;
}

.phone-screen-emoji {
  font-size: 80px;
  animation: float 3s ease-in-out infinite;
}

.phone-screen-text {
  color: white;
  font-weight: 700;
  font-size: 22px;
}

.phone-screen-sub {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* FEATURES */
.features {
  background: var(--light);
  padding: 100px 24px;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  color: #C2005A;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

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

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255,75,139,0.1);
  border-color: rgba(255,75,139,0.2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,75,139,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* STATS */
.stats {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 16px;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 24px;
  text-align: center;
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--gradient);
  border-radius: 28px;
  padding: 60px 40px;
  color: white;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-box p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-box .appstore-btn {
  background: white;
  color: #1a1a1a;
}

.cta-box .appstore-btn svg {
  fill: #1a1a1a;
}

.cta-box .appstore-btn:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* FOOTER */
footer {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-copy {
  color: var(--muted);
  font-size: 13px;
}

/* LEGAL PAGES */
.legal-hero {
  background: var(--gradient);
  padding: 80px 24px 60px;
  text-align: center;
  color: white;
}

.legal-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.legal-hero p {
  font-size: 16px;
  opacity: 0.85;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section-number {
  display: inline-block;
  background: rgba(194,0,90,0.1);
  color: #C2005A;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
  white-space: pre-line;
}

.legal-intro {
  background: rgba(255,75,139,0.05);
  border-left: 4px solid var(--pink);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* SUPPORT PAGE */
.support-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.support-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.2s;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255,75,139,0.1);
  border-color: rgba(255,75,139,0.2);
}

.support-card .icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.support-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.support-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.support-card a {
  color: #C2005A;
  text-decoration: none;
  font-weight: 600;
}

.support-card a:hover {
  text-decoration: underline;
}

.faq {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

.faq h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 48px 20px;
    min-height: auto;
    text-align: center;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mockup {
    width: 240px;
    height: 500px;
  }

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

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

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    list-style: none;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 17px;
  }

  .nav-cta {
    margin: 8px 24px 0;
    border-radius: 100px;
    display: block;
  }

  .cta-box {
    padding: 48px 20px;
  }

  /* Om oss grid → kolumn på mobil */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}
