/* Motion Flow - Modern Active Style */

/* CSS Variables */
:root {
  --white: #FFFFFF;
  --orange-sunset: #FF6D00;
  --sky-blue: #0288D1;
  --dark-text: #1A1A1A;
  --gray-light: #F5F5F5;
  --gray-medium: #9E9E9E;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Prompt', sans-serif;
  background-color: var(--white);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
  color: #424242;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-sunset), #FF8F00);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 109, 0, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--sky-blue), #039BE5);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(2, 136, 209, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(2, 136, 209, 0.5);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sky-blue);
}

.logo span {
  color: var(--orange-sunset);
}

.nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-menu a {
  font-weight: 500;
  color: var(--dark-text);
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--orange-sunset);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-sunset);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--white) 0%, #FFF3E0 50%, #E1F5FE 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 109, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--dark-text);
  margin-bottom: 20px;
  font-size: 3.2rem;
}

.hero-content h1 span {
  color: var(--orange-sunset);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #616161;
  line-height: 1.8;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
}

.hero-shapes {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: var(--orange-sunset);
  border-radius: 30px;
  opacity: 0.1;
  z-index: -1;
}

/* Section Base */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: var(--dark-text);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Lifestyle Section */
.lifestyle {
  background: var(--gray-light);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lifestyle-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.lifestyle-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.lifestyle-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sky-blue), #039BE5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2.5rem;
}

.lifestyle-card:nth-child(2) .lifestyle-card-icon {
  background: linear-gradient(135deg, var(--orange-sunset), #FF8F00);
}

.lifestyle-card:nth-child(3) .lifestyle-card-icon {
  background: linear-gradient(135deg, #43A047, #66BB6A);
}

.lifestyle-card h3 {
  margin-bottom: 20px;
  color: var(--dark-text);
}

.lifestyle-checklist {
  list-style: none;
}

.lifestyle-checklist li {
  padding: 12px 0;
  border-bottom: 1px solid #EEEEEE;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #616161;
}

.lifestyle-checklist li:last-child {
  border-bottom: none;
}

.lifestyle-checklist li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--sky-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Strategy Section */
.strategy {
  background: var(--white);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.strategy-card {
  text-align: center;
  padding: 50px 30px;
  border-radius: 25px;
  background: linear-gradient(135deg, #FAFAFA, var(--white));
  border: 2px solid #EEEEEE;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.strategy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sky-blue), var(--orange-sunset));
}

.strategy-card:hover {
  border-color: var(--sky-blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.strategy-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sky-blue), #039BE5);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 25px;
}

.strategy-card:nth-child(2) .strategy-number {
  background: linear-gradient(135deg, var(--orange-sunset), #FF8F00);
}

.strategy-card:nth-child(3) .strategy-number {
  background: linear-gradient(135deg, #43A047, #66BB6A);
}

.strategy-card h3 {
  margin-bottom: 15px;
  color: var(--dark-text);
}

.strategy-card p {
  color: #757575;
  line-height: 1.8;
}

.strategy-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #E1F5FE 0%, #FFF3E0 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 5rem;
  color: var(--orange-sunset);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-style: italic;
  color: #424242;
  margin-bottom: 25px;
  line-height: 1.8;
}

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

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  color: var(--dark-text);
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.testimonial-author-info span {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

/* Form Section */
.form-section {
  background: var(--white);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--white), #FAFAFA);
  border-radius: 30px;
  padding: 60px;
  box-shadow: var(--shadow-hover);
  border: 2px solid #EEEEEE;
}

.form-section .section-title {
  margin-bottom: 40px;
}

.form-section .section-title h2 {
  color: var(--sky-blue);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 10px;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 25px;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 4px rgba(2, 136, 209, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-medium);
}

.form-submit {
  text-align: center;
  margin-top: 35px;
}

.form-submit .btn {
  width: 100%;
  max-width: 350px;
}

/* Footer */
.footer {
  background: var(--dark-text);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  color: #BDBDBD;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--orange-sunset);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #BDBDBD;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange-sunset);
  padding-left: 5px;
}

.footer-tips {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
}

.footer-tips ul {
  list-style: none;
}

.footer-tips li {
  padding: 10px 0;
  color: #BDBDBD;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-tips li::before {
  content: '💡';
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #757575;
  font-size: 0.9rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

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

.modal-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #43A047, #66BB6A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
}

.modal h3 {
  font-size: 1.8rem;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.modal p {
  color: #616161;
  line-height: 1.8;
  margin-bottom: 30px;
}

.modal-close {
  background: linear-gradient(135deg, var(--sky-blue), #039BE5);
  color: var(--white);
  border: none;
  padding: 16px 50px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 136, 209, 0.4);
}

.modal-close:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(2, 136, 209, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 400px;
  }

  .lifestyle-grid,
  .strategy-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .nav-menu {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-image img {
    height: 300px;
  }

  .form-container {
    padding: 40px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  section {
    padding: 60px 0;
  }
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 60px;
  background: var(--gray-light);
  min-height: 100vh;
}

.legal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  color: var(--sky-blue);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--orange-sunset);
}

.legal-content h2 {
  color: var(--dark-text);
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.legal-content p,
.legal-content li {
  color: #616161;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 25px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-back {
  display: inline-block;
  margin-top: 30px;
  color: var(--sky-blue);
  font-weight: 600;
  transition: color 0.3s ease;
}

.legal-back:hover {
  color: var(--orange-sunset);
}
