:root {
  --blue: #579b73;
  --gray: #6b7280;
  --white: #ffffff;
  --black: #000000;
  --tw-gradient-from: #fbbf24 var("");
  --tw-gradient-to: rgba(251, 191, 36, 0) var("");
  --gradient-stops: var(#fbbf24 var("")), var(rgba(251, 191, 36, 0) var(""));
}

.btn-install {
  background: linear-gradient(to right, #579b73, #5cbc83);
  color: white;

  border: none;
  transition: background 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.btn-install:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #f9fafb, #f3f4f6);
  color: #1f2937;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* --- HEADER RESPONSIVE --- */
@media (max-width: 768px) {
  header {
    padding: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  nav {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  nav a {
    margin-left: 0;
    font-size: 0.9rem;
  }
  
  .btn-install {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.75rem;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  nav a {
    font-size: 0.85rem;
  }
  
  .btn-install {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* --- MOVE TO TOP BUTTON --- */
.move-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #579b73;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.move-to-top:hover {
  background: #407054;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.move-to-top.show {
  display: flex;
}

.move-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .move-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .move-to-top svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .move-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .move-to-top svg {
    width: 16px;
    height: 16px;
  }
}

summary {
  list-style-type: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--blue);
}

nav a {
  margin-left: 2rem;
  color: #4b5563;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--blue);
}

/* --- HERO SECTION ENHANCEMENTS --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem 3rem 2rem;
  text-align: center;
  background: linear-gradient(120deg, #579b73 0%, #5cbc83 100%);
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  max-width: 800px;
  margin-bottom: 1.2rem;
  background: linear-gradient(to right, #fff, #5cbc83 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  z-index: 1;
}
.hero p {
  font-size: 1.25rem;
  color: #e0e7ef;
  max-width: 650px;
  margin-bottom: 2.5rem;
  z-index: 1;
}

/* --- SLIDER ENHANCEMENTS --- */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
  border-radius: 1.5rem;
}

/* --- SLIDER ARROW BUTTONS --- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #579b73;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-arrow-left {
  left: 16px;
}

.slider-arrow-right {
  right: 16px;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
}
.slide {
  /* ✨ FIX: Replaced min-width and flex-shrink with a robust flex definition */
  flex: 0 0 100%;
  overflow: hidden;
  /* ✨ FIX: Used aspect-ratio for automatic, consistent height */
  aspect-ratio: 1200 / 750;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  /* ✨ FIX: Moved box-shadow from img to the slide container */
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* --- CAROUSEL INDICATORS --- */
.carousel-indicators {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}
.carousel-indicator {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 2px solid #579b73;
  transition: background 0.2s, border 0.2s;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.carousel-indicator.active {
  background: #579b73;
  border: 2px solid #fff;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1300px) {
  .slider-container {
    max-width: 100vw;
  }
  
  .slider-arrow {
    width: 44px;
    height: 44px;
  }
  .slider-arrow-left {
    left: 12px;
  }
  .slider-arrow-right {
    right: 12px;
  }
}
@media (max-width: 900px) {
  .hero {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
  }
  .hero h1,
  .hero p {
    display: none;
  }
  .hero {
    background: transparent;
    padding: 1rem 0.5rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .slider-container {
    max-width: 100vw;
    border-radius: 0.7rem;
  }
  .slide {
    border-radius: 0.7rem;
    height: 45vw;
    min-height: 160px;
    max-height: 320px;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slider-arrow svg {
    width: 18px;
    height: 18px;
  }
  .slider-arrow-left {
    left: 8px;
  }
  .slider-arrow-right {
    right: 8px;
  }
  .carousel-indicators {
    bottom: 8px;
    gap: 0.4rem;
  }
  .carousel-indicator {
    width: 9px;
    height: 9px;
  }
  /* Footer responsive */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-container {
    padding: 0 1rem;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 0.5rem 0.1rem;
  }
  .hero h1,
  .hero p {
    display: none;
  }
  .hero {
    background: transparent;
  }
  .hero h1 {
    font-size: 1.1rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .slider-container {
    border-radius: 0.3rem;
  }
  .slide {
    border-radius: 0.3rem;
    height: 55vw;
    min-height: 80px;
    max-height: 230px;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
  }
  .slider-arrow svg {
    width: 16px;
    height: 16px;
  }
  .slider-arrow-left {
    left: 4px;
  }
  .slider-arrow-right {
    right: 4px;
  }
  .carousel-indicators {
    bottom: 2px;
    gap: 0.2rem;
  }
  .carousel-indicator {
    width: 7px;
    height: 7px;
  }
  /* Footer responsive */
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-container {
    padding: 0 0.5rem;
  }
  .footer-enhanced {
    padding: 2rem 0;
  }
}
@media (max-width: 480px) {
  .slider-arrow {
    width: 32px;
    height: 32px;
  }
  .slider-arrow svg {
    width: 14px;
    height: 14px;
  }
  .slider-arrow-left {
    left: 2px;
  }
  .slider-arrow-right {
    right: 2px;
  }
}

.features,
.how-it-works,
.faq,
.install,
.perfect-for {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #6b7280;
  max-width: 700px;
  margin: auto;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 3rem;
  gap: 2.5rem;
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card svg {
  margin: auto;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--blue);
  color: white;
  font-weight: bold;
  border-radius: 9999px;
  margin: auto auto 1rem auto;
}

.how-it-works .step h3,
.how-it-works .step p {
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.plan {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 2px solid #e5e7eb;
  transition: transform 0.3s ease;
}

.popular-badge {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.plan h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.plan ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.plan ul li svg {
  color: #10b981;
}

.plan button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  margin-top: 1rem;
  cursor: pointer;
}

/* FAQ Styles */
.faq {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.faq-container {
  margin-top: 2rem;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  position: relative;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.faq-question::after {
  content: "\2b";
  /* Plus sign (+) */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #8b929e;
  transition: transform 0.3s ease;
}

details[open] .faq-question::after {
  content: "\2212";
  /* Minus sign (-) */
}

.faq-answer {
  margin-top: 1rem;
  padding: 1rem 0;
  color: #4b5563;
  display: none;
  /* Initially hidden */
}

details[open] .faq-answer {
  display: block;
  list-style-type: none;
}

footer {
  background: #f3f4f6;
  padding: 3rem 2rem;
  text-align: center;
  color: #6b7280;
}

.social-icons a {
  margin: 0 0.5rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--blue);
}

svg {
  vertical-align: middle;
}

/* New Section Styles */
.final-call-to-action {
  background: var(--blue);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.final-call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.final-call-to-action ul {
  list-style: none;
  text-align: center;
  margin: 2em;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 77px;
  width: 503px;
}

.final-call-to-action li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.final-call-to-action li svg {
  width: 24px;
  height: 24px;
  fill: rgb(251, 191, 36);
}

.final-call-to-action button {
  background: #e1ac52;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.final-call-to-action button:hover {
  background: #a88245;
}

.final-call-to-action .features-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.final-call-to-action .features-list span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.final-call-to-action .features-list svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.max-w-2xl.mx-auto.mb-12 {
  display: flex;
  justify-content: center;
}

.final-dont-lose-extension {
  margin-bottom: 2rem;
}

.use-cases-list {
  display: grid;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  align-items: start;
  max-width: 900px;
  font-size: 1.2rem;
  font-weight: 600;
  gap: 24px 48px;
  list-style: none;
  margin: 3rem auto 0px;
  padding: 0px;
}

.use-cases-list li::before {
  content: "✓";
  position: absolute;
  left: 0px;
  top: 0.15em;
  color: red;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
}

.final-call-to-action {
  background: linear-gradient(to right, #579b73, #407054);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}
.final-call-to-action .bg-gradient-to-r.from-white.to-blue-100 {
  background-image: linear-gradient(to right, white, #bfdbfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-call-to-action .bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}
.final-call-to-action .backdrop-blur-sm {
  backdrop-filter: blur(4px);
}
.final-call-to-action .border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  width: 524px;
  padding: 10px;
  margin-bottom: 1em;
}
.final-call-to-action .text-blue-100 {
  color: #e0e7ff;
}
.final-call-to-action .text-amber-400 {
  color: #fbbf24;
}
.final-call-to-action .hover\:from-amber-500 {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
}
.final-call-to-action .hover\:to-amber-600:hover {
  background: linear-gradient(to right, #fbbf24, #ff5700);
}
.final-call-to-action .group:hover svg {
  transform: translateX(-4px);
  transition: transform 0.2s ease;
}
.final-call-to-action .group {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.install-button-final {
  margin-bottom: 1em;
}

/* --- HOW IT WORKS IMAGE STYLING --- */
.how-it-works .step img {
  display: block;
  margin: 1.5rem auto 1rem auto;
  max-width: 95%;
  max-height: 340px;
  border-radius: 1.2rem;
  box-shadow: 0 6px 32px rgba(87,155,115,0.13), 0 1.5px 8px rgba(0,0,0,0.07);
  border: 3px solid #e0e7ef;
  background: #fff;
  object-fit: contain;
  transition: box-shadow 0.2s;
}
.how-it-works .step img:hover {
  box-shadow: 0 12px 48px rgba(87,155,115,0.18), 0 2px 12px rgba(0,0,0,0.10);
  border-color: #5cbc83;
}
@media (max-width: 900px) {
  .how-it-works .step img {
    max-width: 100%;
    max-height: 220px;
    border-radius: 0.8rem;
  }
}
@media (max-width: 600px) {
  .how-it-works .step img {
    max-width: 100vw;
    max-height: 120px;
    border-radius: 0.5rem;
  }
}

@media (max-width: 900px) {
  .feature-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .section-title p {
    font-size: 1rem;
  }
  .faq {
    padding: 2rem 1rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 0.7rem 0;
  }
  .faq-answer {
    font-size: 0.95rem;
  }
  .final-call-to-action {
    padding: 2rem 1rem;
  }
  .final-call-to-action h2 {
    font-size: 1.5rem;
  }
  .final-call-to-action ul {
    width: 100%;
    margin: 1em 0;
    font-size: 1rem;
  }
  .final-call-to-action .border-white\/20 {
    width: 100%;
    padding: 6px;
  }
  .max-w-2xl.mx-auto.mb-12 {
    flex-direction: column;
    align-items: stretch;
  }
  .use-cases-list {
    grid-template-columns: 1fr;
    font-size: 1rem;
    gap: 16px;
  }
  footer {
    padding: 1.5rem 0.5rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .features,
  .how-it-works,
  .faq,
  .install,
  .perfect-for {
    padding: 1.2rem 0.3rem;
    max-width: 100vw;
  }
  .feature-cards {
    gap: 1rem;
  }
  .card {
    padding: 1rem;
    font-size: 0.98rem;
  }
  .steps {
    gap: 1rem;
  }
  .step {
    padding: 1rem;
    font-size: 0.98rem;
  }
  .section-title h2 {
    font-size: 1.1rem;
  }
  .section-title p {
    font-size: 0.95rem;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
  .final-call-to-action {
    padding: 1rem 0.2rem;
  }
  .final-call-to-action h2 {
    font-size: 1.1rem;
  }
  .final-call-to-action ul {
    font-size: 0.95rem;
    margin: 0.5em 0;
    width: 100%;
  }
  .final-call-to-action .border-white\/20 {
    width: 100%;
    padding: 2px;
  }
  .max-w-2xl.mx-auto.mb-12 {
    flex-direction: column;
    align-items: stretch;
  }
  .use-cases-list {
    font-size: 0.95rem;
    gap: 10px;
  }
  footer {
    padding: 1rem 0.2rem;
    font-size: 0.9rem;
  }
}

/* --- ENHANCED FOOTER STYLES --- */
.footer-enhanced {
  background: #1f2937;
  color: #f9fafb;
  padding: 3rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 0.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #579b73;
  text-decoration: none;
}

.footer-logo img {
  width: 48px;
  height: 48px;
}

.footer-description {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.chrome-store-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.chrome-store-link:hover {
  opacity: 0.8;
}

.chrome-store-link img {
  height: 64px;
  width: auto;
}

.footer-company-info {
  margin-top: 0.3rem;
}

.footer-company-info p {
  color: #9ca3af;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.25rem 0;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-section h3 {
  color: #f9fafb;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-list a {
  color: #d1d5db;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: #579b73;
}

/* --- FOOTER RESPONSIVE FIXES --- */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-container {
    padding: 0 1rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-description {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-container {
    padding: 0 0.5rem;
  }
  .footer-enhanced {
    padding: 2rem 0;
  }
  .footer-section {
    text-align: center;
  }
  .footer-links-list {
    align-items: center;
  }
}
