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

:root {
  --green-primary: #28a745;
  --green-light: #20c997;
  --green-dark: #199f4e;
  --green-accent: #6fcf97;
  --green-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  --yellow-accent: #ffd93d;
  --white: #ffffff;
  --light-bg: #f8fffe;
  --card-bg: #ffffff;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --shadow: 0 10px 40px rgba(40, 167, 69, 0.15);
  --shadow-hover: 0 15px 50px rgba(40, 167, 69, 0.25);
}

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

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  }
  
  .container {
  max-width: 1200px;
    margin: auto;
  padding: 0 24px;
  }
  
/* Navigation */
  .nav {
    position: sticky;
    top: 0;
    background: var(--white);
    backdrop-filter: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 16px 0;
  }
  
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 24px;
  color: var(--green-primary);
}

.logo {
  height: 40px;
  width: auto;
  border-radius: 1em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn-small {
  padding: 8px 15px;
  font-size: 16px;
  background: var(--green-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  border-radius: 50px;
  text-decoration: none;
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
  background: var(--green-gradient);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-large {
  padding: 18px 40px;
  font-size: 20px;
}

/* Hero Section */
  .hero {
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url('background.png') center center / cover no-repeat;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero.container {
  max-width: 100vw;
  padding-left: 0;
  padding-right: 0;
}

.hero .hero-content {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.highlight {
  background: linear-gradient(120deg, var(--green-accent) 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.8;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.plant-badge, .animal-badge, .alcohol-badge {
  display: inline;
  font-weight: 700;
  font-size: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
}

.plant-badge {
  color: #d4edda;
}

.animal-badge {
  color: #f8d7da;
}

.alcohol-badge {
  color: #fff3cd;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  max-width: 300px;
}

.phone-mockup img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
}

.floating-card {
  display: none;
}

/* Our Story Section */
.our-story-section {
  padding: 100px 24px;
  text-align: center;
  overflow: visible;
}

.our-story-section .container {
  overflow: visible;
}

.story-wrapper {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 0;
}

.story-content {
  max-width: 100%;
  background: var(--white);
  padding: 60px 80px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-content::before {
  display: none;
}

.story-content::after {
  display: none;
}




.story-content p {
  font-size: 18px;
  line-height: 2;
  color: #333;
  margin-bottom: 24px;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  position: relative;
  z-index: 2;
  background: transparent;
}

.story-content p:last-child {
  margin-bottom: 0;
}


/* How It Works Section */
#how-it-works {
  padding-top: 80px;
  padding-bottom: 0;
}

/* Demo Section */
#demo {
  padding: 100px 24px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
}

/* How It Works Steps */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
  margin-bottom: 80px;
}

.work-step {
  background: var(--white);
  padding: 40px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.work-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--green-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.work-step:hover::before {
  transform: scaleX(1);
}

.work-step-featured {
  background: linear-gradient(135deg, #86efac 0%, #6ee7b7 100%);
  color: var(--text-dark);
  transform: scale(1.05);
}

.work-step-featured::before {
  background: var(--white);
}

.work-step-featured:hover::before {
  transform: scaleX(1);
}

.work-step-featured h3,
.work-step-featured p {
  color: var(--white);
}

.work-step-featured h3,
.work-step-featured p {
  color: var(--white);
}

.step-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.step-icon {
  display: none;
}

.work-step-featured .step-icon {
  display: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--green-primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.work-step-featured .step-number {
  background: var(--white);
  color: var(--green-primary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

.work-step h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.work-step p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* Step Visuals */
.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  min-height: 100px;
}

/* Ingredient Bubbles */
.ingredient-bubble {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow);
  animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-1 {
  animation-delay: 0s;
  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
}

.bubble-2 {
  animation-delay: 1s;
  background: linear-gradient(135deg, #d4edda 0%, #b3e5c8 100%);
}

.bubble-3 {
  animation-delay: 2s;
  background: linear-gradient(135deg, #cfe2ff 0%, #b6d4fe 100%);
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Flag Cards */
.flag-card {
  display: inline-block;
  font-size: 48px;
  animation: slideIn 0.6s ease-out;
  transition: all 0.3s ease;
  line-height: 1;
}

.flag-card:hover {
  transform: scale(1.15);
}

.flag-ellipsis {
    display: inline-block;
  font-size: 32px;
  color: var(--text-light);
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
  animation: fadeIn 0.6s ease-out 0.7s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lang-1 { animation-delay: 0.1s; }
.lang-2 { animation-delay: 0.2s; }
.lang-3 { animation-delay: 0.3s; }
.lang-4 { animation-delay: 0.4s; }
.lang-5 { animation-delay: 0.5s; }
.lang-6 { animation-delay: 0.6s; }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.arrow {
  font-size: 36px;
  color: var(--green-primary);
  animation: arrowPulse 2s ease-in-out infinite;
  margin: 0 8px;
}

.work-step-featured .arrow {
  color: var(--green-dark);
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.result-badge {
  width: 50px;
  height: 50px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  animation: checkmark 0.5s ease-out 0.3s both;
}

@keyframes checkmark {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.work-step-featured .result-badge {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(25, 159, 78, 0.4);
}

/* Result Cards */
.result-card {
  background: var(--white);
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  min-width: 100px;
}

.result-card:hover {
  transform: scale(1.1);
}

.result-plant {
  background: linear-gradient(135deg, #d4edda 0%, #b3e5c8 100%);
  border: 2px solid var(--green-dark);
  color: var(--text-dark);
}

.result-vegetarian {
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
  border: 2px solid #66bb6a;
  color: #1b5e20;
}

.result-animal {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border: 2px solid #dc3545;
  color: #721c24;
}

.result-alcohol {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
  border: 2px solid #ffc107;
  color: #856404;
}

.result-icon {
  display: none;
}

.demo-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  margin-top: 40px;
}

.demo-wrapper video {
  width: 100%;
  display: block;
  border-radius: 30px;
}

/* Features Section */
.features-section {
  padding: 100px 24px;
  }
  
  .features {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

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

.feature-card-green {
  background: linear-gradient(135deg, #86efac 0%, #6ee7b7 100%);
  color: var(--text-dark);
}

.feature-card-green h3,
.feature-card-green p {
  color: var(--text-dark);
}

.card-icon {
  display: none;
}

.feature-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Screenshots Section */
.screenshots-section {
  padding: 100px 24px;
  }
  
  .screens {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.screen-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.screen-wrapper:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.screen-wrapper img {
  width: 100%;
  display: block;
  border-radius: 30px;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #86efac 0%, #6ee7b7 100%);
  padding: 100px 24px;
  text-align: center;
  color: var(--text-dark);
}

.final-cta h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.final-cta p {
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--text-dark);
  opacity: 0.9;
}

.final-cta .btn {
  background: var(--white);
  color: var(--green-primary);
}

.final-cta .btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: transparent;
  color: var(--text-light);
  padding: 40px 24px;
  text-align: center;
}

footer a {
  color: var(--green-primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--green-dark);
}

/* Contact Form Section */
.contact-section {
  padding: 100px 24px;
  background: transparent;
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-wrapper .text {
  text-align: center;
  margin-bottom: 48px;
}

.contact-wrapper .text p {
  font-size: 18px;
  color: var(--text-light);
  margin-top: 16px;
}

form {
  background: var(--white);
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 30px;
}

.input-data {
  position: relative;
  height: 60px;
}

.input-data input,
.input-data textarea {
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 2px solid rgba(40, 167, 69, 0.2);
  outline: none;
  font-size: 17px;
  font-family: 'Nunito', sans-serif;
  padding-top: 20px;
  padding-bottom: 5px;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.input-data label {
  position: absolute;
  bottom: 15px;
  left: 0;
  color: var(--text-light);
  font-size: 17px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-data input:focus ~ label,
.input-data input:valid ~ label {
  transform: translateY(-30px);
  font-size: 14px;
  color: var(--green-primary);
  font-weight: 700;
}

.input-data textarea:focus ~ label,
.input-data textarea:valid ~ label {
  transform: translateY(-50px);
  font-size: 14px;
  color: var(--green-primary);
  font-weight: 700;
}

.input-data input:focus,
.input-data textarea:focus {
  border-bottom-color: var(--green-primary);
}

.input-data.textarea {
  height: 90px;
}

.input-data textarea {
  resize: none;
  height: 100%;
  min-height: 90px;
}

.submit-btn {
  text-align: center;
}

.submit-btn .input-data {
  height: 50px;
  overflow: visible;
  display: inline-block;
  width: auto;
  border-bottom: none;
}

.submit-btn .input-data input {
  background: var(--green-gradient);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  border: none !important;
  border-bottom: none !important;
  border-radius: 50px;
  padding: 10px 40px;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
  width: auto;
  display: inline-block;
  outline: none;
}

.submit-btn .input-data input:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  box-shadow: var(--shadow-hover);
}

.submit-btn .input-data input:active {
  box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

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

  .floating-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
  
  .screens {
      grid-template-columns: 1fr;
    }

  form {
    padding: 30px 20px;
  }

  .contact-wrapper .text p {
    font-size: 16px;
  }

  .story-content {
    padding: 30px 20px;
  }


  .brand {
    font-size: 20px;
  }

  .logo {
    height: 32px;
  }

  .nav-inner {
    gap: 10px;
  }
}

