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

:root {
  --primary-color: #2b7a78;
  --secondary-color: #def2f1;
  --accent-color: #17252a;
  --highlight-color: #ffb800;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: var(--bg-light);
  box-shadow: 0 0 30px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-color);
  text-align: center;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary-color), #3aafa9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: var(--text-light);
  font-size: 1.125rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 4px 14px 0 rgba(43, 122, 120, 0.39);
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-color) 0%, #3aafa9 100%);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(43, 122, 120, 0.5);
}

.btn-pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(43, 122, 120, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(43, 122, 120, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(43, 122, 120, 0); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

.nav-logo span {
  color: var(--primary-color);
}

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

.nav-links li a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--accent-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem 0;
  background: radial-gradient(circle at 100% 0%, var(--secondary-color) 0%, transparent 40%),
              radial-gradient(circle at 0% 100%, var(--secondary-color) 0%, transparent 40%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--primary-color);
  display: block;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-features i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hero-cta-wrap {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-blob {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
  animation: blob-bounce 5s infinite alternate;
}

@keyframes blob-bounce {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(20px, -20px); }
}

.hero-image {
  max-width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

/* Trust Bar */
.trust-bar {
  background: var(--white);
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-item img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* What is SodaSlim */
.about {
  background: var(--white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Ingredients */
.ingredients {
  background-color: var(--bg-light);
}

.ingr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ingr-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.02);
}

.ingr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #3aafa9);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.ingr-card:hover::before {
  transform: scaleX(1);
}

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

.ingr-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--primary-color);
  font-size: 2rem;
}

.ingr-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

/* Pricing */
.pricing {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card.featured {
  transform: scale(1.05);
  background: linear-gradient(180deg, #17252a 0%, #2b7a78 100%);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(43, 122, 120, 0.2);
  border: none;
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .price-text {
  color: var(--white);
}

.badge-best-value {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight-color);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-img {
  max-width: 220px;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-subtitle {
  color: rgba(255,255,255,0.8);
}

.price-wrap {
  margin-bottom: 1.5rem;
}

.price-text {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.price-text sup {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-text sub {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-card.featured .price-text sub {
  color: rgba(255,255,255,0.7);
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
  width: 100%;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features i {
  color: var(--primary-color);
}

.pricing-card.featured .pricing-features i {
  color: var(--highlight-color);
}

.pricing-card .btn {
  width: auto;
  padding: 1rem 2rem;
}

.pricing-card.featured .btn {
  background: var(--white);
  color: var(--accent-color);
}

.pricing-card.featured .btn:hover {
  background: var(--secondary-color);
}

.pricing-payments {
  margin: 1.5rem auto 0 auto;
  width: 100%;
  max-width: 150px;
  opacity: 0.8;
}

/* Guarantee Section */
.guarantee {
  background: var(--white);
  padding: 4rem 0;
}

.guarantee-box {
  background: var(--secondary-color);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-img {
  width: 150px;
  flex-shrink: 0;
}

.guarantee-content h3 {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.guarantee-content p {
  font-size: 1.1rem;
  margin: 0;
}

/* FAQ */
.faq {
  background: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #fdfdfd;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
}

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

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  font-size: 0.85rem;
  text-align: center;
}

.footer-disclaimer p {
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-features li {
    justify-content: center;
  }
  
  .hero-cta-wrap {
    justify-content: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    transition: left 0.3s ease;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

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

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #3aafa9);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.75rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Standout Section */
.standout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.standout-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.standout-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.standout-list i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.standout-list h4 {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.standout-list p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.standout-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
}

/* Reviews Update */
.review-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 16px;
  max-width: 350px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

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

@media (max-width: 992px) {
  .standout-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .standout-list li {
    text-align: left;
  }
}

/* Hero Image Card */
.hero-image-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 450px;
  margin: 0 auto;
}

.hero-product-info {
  text-align: center;
  margin-top: 1rem;
}

.hero-product-info h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.hero-product-info p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
}

/* Blog Styles */
.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 2.5rem 0 1rem 0;
}

.blog-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 2rem 0 1rem 0;
}

.blog-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

