/* Slice Website Styles */
:root {
  --slice-primary: #a7dd7f;
  --slice-primary-dark: #95c76a;
  --slice-primary-light: #b8e6a0;
  --slice-background: #ffffff;
  --slice-surface: #f8f9fa;
  --slice-text: #000000;
  --slice-text-secondary: #666666;
  --slice-text-muted: #999999;
  --slice-border: #e0e0e0;
  --slice-border-light: #f0f0f0;
  --slice-shadow: rgba(0, 0, 0, 0.1);
  --slice-shadow-light: rgba(0, 0, 0, 0.05);
  --slice-gradient: linear-gradient(135deg, #a7dd7f 0%, #95c76a 100%);
  --slice-gradient-light: linear-gradient(135deg, #b8e6a0 0%, #a7dd7f 100%);
}

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

.extension-screenshot {
  max-width: 200%;
  height: auto;
}

.about-stats-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.about-stats-right .about-stat {
  text-align: center;
  padding: 30px;
  background: var(--slice-background);
  border-radius: 12px;
  border: 1px solid var(--slice-border);
  box-shadow: 0 8px 25px var(--slice-shadow);
  transition: all 0.3s ease;
  min-width: 200px;
}

.about-stats-right .about-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--slice-shadow);
}

.about-stats-right .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slice-primary);
  margin-bottom: 8px;
}

.about-stats-right .stat-label {
  font-size: 1rem;
  color: var(--slice-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--slice-text);
  background-color: var(--slice-background);
  transition: all 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--slice-text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--slice-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(167, 221, 127, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 221, 127, 0.4);
}

.btn-secondary {
  background: var(--slice-surface);
  color: var(--slice-text);
  border: 2px solid var(--slice-border);
}

.btn-secondary:hover {
  background: var(--slice-primary);
  color: white;
  border-color: var(--slice-primary);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slice-border-light);
  z-index: 1000;
  transition: all 0.3s ease;
}


.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--slice-text);
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-text {
  background: var(--slice-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--slice-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--slice-primary);
}

.nav-link.cta-button {
  background: var(--slice-gradient);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-link.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(167, 221, 127, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--slice-text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}


.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--slice-text);
}

.highlight {
  background: var(--slice-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--slice-text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--slice-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--slice-text-secondary);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.extension-mockup {
  background: var(--slice-background);
  border: 1px solid var(--slice-border);
  border-radius: 12px;
  box-shadow: 0 20px 40px var(--slice-shadow);
  width: 400px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.extension-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
  background: var(--slice-surface);
  padding: 20px;
  border-bottom: 1px solid var(--slice-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-logo img {
  width: 24px;
  height: 24px;
}

.mockup-title {
  font-weight: 600;
  color: var(--slice-text);
}

.mockup-content {
  padding: 20px;
}

.mockup-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--slice-border);
  border-radius: 8px;
  margin-bottom: 12px;
  position: relative;
  background: var(--slice-background);
}

.mockup-product.best-match {
  border-color: var(--slice-primary);
  background: rgba(167, 221, 127, 0.05);
}

.product-image img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.product-info {
  flex: 1;
}

.product-title {
  font-weight: 500;
  color: var(--slice-text);
  margin-bottom: 4px;
  font-size: 14px;
}

.product-price {
  font-weight: 600;
  color: var(--slice-text);
  font-size: 16px;
}

.product-price.best-price {
  color: var(--slice-primary);
}

.product-site {
  font-size: 11px;
  color: var(--slice-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.similarity-score {
  background: var(--slice-primary);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.best-match-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  background: var(--slice-primary);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--slice-text);
}

.section-description {
  font-size: 1.25rem;
  color: var(--slice-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--slice-surface);
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--slice-background);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--slice-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--slice-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--slice-shadow);
}

.feature-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon .icon {
  font-size: 4rem;
  display: inline-block;
  transition: all 0.3s ease;
}

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

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--slice-text);
}

.feature-description {
  color: var(--slice-text-secondary);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: var(--slice-background);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--slice-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(167, 221, 127, 0.3);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--slice-text);
}

.step-description {
  color: var(--slice-text-secondary);
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--slice-surface);
}


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

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--slice-text-secondary);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

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

.tech-stack {
  background: var(--slice-background);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--slice-border);
}

.tech-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--slice-text);
  text-align: center;
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--slice-border-light);
}

.tech-item:last-child {
  border-bottom: none;
}

.tech-name {
  font-weight: 600;
  color: var(--slice-text);
}

.tech-desc {
  color: var(--slice-text-secondary);
  font-size: 0.9rem;
}

/* Download Section */
.download {
  padding: 80px 0;
  background: var(--slice-gradient);
  color: white;
  text-align: center;
}

.download .section-title,
.download .section-description {
  color: white;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.download .btn-primary {
  background: white;
  color: var(--slice-primary);
  font-weight: 600;
}

.download .btn-primary:hover {
  background: var(--slice-surface);
  transform: translateY(-2px);
}

.download .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.download .btn-secondary:hover {
  background: white;
  color: var(--slice-primary);
}

.download-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-icon {
  font-size: 1.2rem;
}

.info-text {
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--slice-background);
}

.contact-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 20px;
  flex: 1;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 3rem;
  display: block;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-details {
  flex: 1;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--slice-text);
}

.contact-text {
  color: var(--slice-text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

/* Map Container */
.map-container {
  margin-top: 60px;
  text-align: center;
}

.map-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slice-text);
  margin-bottom: 20px;
}

.map-wrapper {
  border: 1px solid var(--slice-border);
  overflow: hidden;
}

.map-wrapper iframe {
  border: none;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 16px;
  border: 2px solid var(--slice-border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: var(--slice-background);
  color: var(--slice-text);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--slice-primary);
  box-shadow: 0 0 0 3px rgba(167, 221, 127, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--slice-surface);
  padding: 60px 0 20px;
  border-top: 1px solid var(--slice-border);
}


.footer-content {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 600px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
}

.footer-logo .logo-text {
  font-size: 24px;
  font-weight: 700;
  background: var(--slice-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--slice-text-secondary);
  line-height: 1.6;
}


.footer-bottom {
  border-top: 1px solid var(--slice-border);
  padding-top: 20px;
  text-align: center;
}

.footer-copyright {
  color: var(--slice-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-uae {
  color: var(--slice-text-secondary);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--slice-background);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    transition: left 0.3s ease;
    border-top: 1px solid var(--slice-border);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    margin: 16px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .steps-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    justify-content: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-list {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    max-width: 100%;
  }

  .contact-item {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 15px 0;
  }

  .contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
  }

  .map-container {
    margin-top: 40px;
  }

  .map-title {
    font-size: 1.25rem;
  }

  .map-wrapper iframe {
    height: 250px;
  }

  .about-stats-right {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-stats-right .about-stat {
    min-width: 150px;
    padding: 20px;
  }


  .extension-mockup {
    width: 100%;
    max-width: 350px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .download-info {
    flex-direction: column;
    gap: 16px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
