:root {
  /* Brand Theme: Middax */
  --launch-teal: #0D2B38; /* Header & Contrast */
  --launch-coral: #FF6040; /* Highlight / App Main */
  --accent-sage: #6B8E23; /* Success & CTAs */
  --gold: #FFC107;
  --pink: #FF4081;
  --teal: #008080;
  
  /* Neutral / Backgrounds */
  --bg-main: #FFFFFF;
  --bg-soft: #F9FBFC;
  --text-primary: #1A1A1A;
  --text-secondary: #4A5568;
  --border-color: #E2E8F0;

  /* Spacing & Effects */
  --radius-card: 25px; /* App-style roundness */
  --radius-btn: 14px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
  --container-width: 1100px;
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVIGATION */
nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 100;
}

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

/* LANGUAGE TOGGLE */
.lang-switch {
  display: flex;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
}

.lang-btn {
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.3s ease;
  user-select: none;
}

.lang-btn.active {
  opacity: 1;
  color: var(--launch-coral);
}

[lang="en"] .sv, [lang="sv"] .en {
  display: none !important;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo img {
  height: 48px;
  filter: drop-shadow(0 0 15px rgba(255, 96, 64, 0.2));
}

.brand-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--launch-teal);
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary {
  background: var(--launch-coral);
  color: white;
  box-shadow: 0 8px 16px rgba(255, 96, 64, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 12px 24px rgba(255, 96, 64, 0.3);
}

.btn-sage {
  background: var(--accent-sage);
  color: white;
  box-shadow: 0 8px 16px rgba(107, 142, 35, 0.2);
}

/* HERO */
.hero {
  padding: 12rem 0 8rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 10;
}

.hero-lifestyle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 5rem);
  line-height: 1;
  font-weight: 900;
  color: var(--launch-teal);
  margin-bottom: 2rem;
  letter-spacing: -3px;
}

.hero-visual {
  position: relative;
  perspective: 1000px;
}

.app-mockup {
  width: 100%;
  max-width: 320px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transform: rotateY(-10deg) rotateX(10deg);
  border: 8px solid #000;
  margin: 0 auto;
}

/* FEATURES */
.features {
  padding: 6rem 0;
  background: var(--bg-soft);
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--launch-teal);
  margin-bottom: 1rem;
}

.feature-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.step-card:hover { transform: translateY(-5px); }

.step-num {
  width: 40px;
  height: 40px;
  background: var(--launch-coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* FEEDBACK & SUPPORT SECTION */
.interaction {
  padding: 8rem 0;
}

.interaction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.card-panel {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.card-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--launch-teal);
}

.card-panel p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--launch-coral);
}

/* FOOTER */
footer {
  background: var(--launch-teal);
  color: white;
  padding: 5rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

.social-links a {
  color: white;
  opacity: 0.7;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--launch-coral);
}

.social-links svg {
  fill: currentColor;
}

.footer-brand h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  opacity: 0.7;
  max-width: 300px;
  font-size: 0.95rem;
}

.footer-legal {
  width: 100%;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-legal a { color: white; text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid, .interaction-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-phone { margin: 0 auto; }
  .nav-links { display: none; }
}

/* PRIVACY NOTICE (NO COOKIES) */
.privacy-notice {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--launch-teal);
    border: 1px solid var(--launch-coral);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-btn);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: fit-content;
    margin: 0 auto;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    color: white;
}

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

.privacy-notice p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.privacy-notice .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    min-width: 80px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.privacy-notice .btn:hover {
    background: var(--launch-coral);
    border-color: var(--launch-coral);
}

@media (max-width: 768px) {
    .privacy-notice {
        flex-direction: column;
        text-align: center;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}
