/* Made Plans Marketing Website Styles */
/* Colors: Black background (#000000), Emerald green accent (#10B981) */

:root {
  --bg-primary: #000000;
  --accent: #10B981;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.5);
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.background-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: rgba(0, 188, 125, 0.3);
  border-radius: 50%;
  filter: blur(100px);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000000, #0a1f1a, #000000);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

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

/* Header/Navigation */
header {
  padding: 24px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 16px;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  width: 100%;
  padding: 100px 0 60px;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 540px;
  width: 100%;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.hero .tagline {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 32px;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.download-badge {
  display: inline-block;
  height: 50px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-badge img {
  height: 100%;
  width: auto;
  display: block;
}

.download-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Phone Composition */
.hero-visuals {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-visuals {
  display: flex;
  margin-bottom: 24px;
}

.desktop-visuals {
  display: none;
}

.phone-composition {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  position: absolute;
  transition: transform 0.5s ease;
  z-index: 10;
  border-radius: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
}

/* Phone Sizes & Positions (Mobile) */
.phone {
  width: 160px;
}

.phone-center {
  width: 180px;
  z-index: 20;
  transform: scale(1.1);
}

.phone-left {
  left: 0;
  transform: rotate(-8deg) translateY(20px);
}

.phone-right {
  right: 0;
  transform: rotate(8deg) translateY(20px);
}


/* Footer */
footer {
  padding: 32px 20px;
  text-align: center;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

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

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

.copyright {
  color: var(--text-muted);
  font-size: 12px;
}

/* Contact & Legal Pages */
.contact-page,
.legal-page {
  padding: 120px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.contact-page h1,
.legal-page h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.contact-page .subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-info {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.contact-email {
  font-size: 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-page ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .download-buttons {
    flex-direction: row;
  }

  .hero-visuals {
    height: 500px;
  }

  .phone {
    width: 200px;
  }

  .phone-center {
    width: 220px;
  }

  .phone-left {
    left: 5%;
  }

  .phone-right {
    right: 5%;
  }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
  .hero {
    padding: 160px 0 80px;
    min-height: 800px;
    display: flex;
    align-items: center;
  }

  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
  }

  .mobile-visuals {
    display: none;
  }

  .desktop-visuals {
    display: flex;
    flex: 1;
    max-width: 600px;
    height: 550px;
  }

  .hero-content {
    text-align: left;
    flex: 1;
    max-width: 540px;
  }

  .hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
  }

  .hero .tagline {
    margin-bottom: 40px;
  }

  .download-buttons {
    justify-content: flex-start;
  }

  .phone {
    width: 220px;
  }

  .phone-center {
    width: 240px;
  }

  .phone-left {
    left: 10%;
  }

  .phone-right {
    right: 10%;
  }
}