@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --border-color: rgba(15, 23, 42, 0.08);
  --border-glow: rgba(14, 165, 233, 0.25);

  --accent-blue: #0284c7;
  --accent-blue-hover: #0369a1;
  --accent-cyan: #06b6d4;
  --accent-pink: #ec4899;
  --accent-gold: #fbbf24;
  --accent-gold-hover: #f59e0b;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  /* Fonts */
  --font-header: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Core Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html,
body {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(219, 39, 119, 0.04) 0%, transparent 40%);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* Glassmorphism Panel Template */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-glow);
  box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.15);
  background: var(--bg-card-hover);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-header);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
}

.logo span {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links .btn-primary {
  background: var(--accent-blue);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 24px;
  border-radius: 10px;
  box-shadow: 0 2px 12px -2px rgba(56, 189, 248, 0.45);
}

.nav-links .btn-primary:hover {
  background: var(--accent-blue-hover);
  color: #fff;
  box-shadow: 0 4px 20px -2px rgba(56, 189, 248, 0.65);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-spring);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: #fff;
  box-shadow: 0 4px 20px -2px rgba(56, 189, 248, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -2px rgba(56, 189, 248, 0.6);
  color: #fff;
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.btn-chrome {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-blue);
  color: #ffffff !important;
  font-family: var(--font-header);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-chrome:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.5);
  background: var(--accent-blue-hover);
}

.chrome-icon {
  position: relative;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: rotate-logo 4.5s linear infinite;
}

.chrome-icon-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8.5px;
  height: 8.5px;
  background: #ffffff;
  border: 1.5px solid var(--accent-blue);
  border-radius: 50%;
  z-index: 2;
  transition: border-color 0.3s ease;
}

.btn-chrome:hover .chrome-icon-center {
  border-color: var(--accent-blue-hover);
}

.chrome-icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--accent-blue);
  transform-origin: 0 50%;
  z-index: 1;
  transition: background 0.3s ease;
}

.btn-chrome:hover .chrome-icon-line {
  background: var(--accent-blue-hover);
}

.chrome-icon-line:nth-child(2) {
  transform: rotate(180deg) translateY(3.5px);
}

.chrome-icon-line:nth-child(3) {
  transform: rotate(300deg) translateY(3.5px);
}

.chrome-icon-line:nth-child(4) {
  transform: rotate(60deg) translateY(3.5px);
}

@keyframes rotate-logo {
  0% {
    transform: rotate(0deg);
  }

  80% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Hero Section */
.hero {
  padding: 120px 0 20px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--accent-blue);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(to right, #0f172a, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
}

/* Workstation Mockup */
.mockup-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  min-width: 0;
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}

/* Screenshot Frame */
.screenshot-frame {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -15px rgba(15, 23, 42, 0.12),
    0 0 0 1px var(--border-color);
  width: 100%;
  transition: var(--transition-spring);
}

.screenshot-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 40px 80px -15px rgba(15, 23, 42, 0.18),
    0 0 0 1px var(--border-glow),
    0 0 40px -10px rgba(56, 189, 248, 0.15);
}

.hero-screenshot {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Features Section */
.features {
  padding-top: 0px;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Infinite Scroll Marquee Styles */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-1500px);
    /* 5 cards * 280px + 5 gaps * 20px = 1500px exactly */
  }
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 80px;
  width: 100%;
  overflow: hidden;
}

.carousel-container {
  overflow-x: auto;
  width: 100%;
  position: relative;
  /* Beautiful soft edge fades */
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 40px;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-card {
  width: 280px;
  flex-shrink: 0;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  scroll-snap-align: center;
}

.card-num {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--font-header);
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.04);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(56, 189, 248, 0.12);
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.carousel-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-primary);
}

/* Detailed Copy Block */
.detailed-copy-block {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.sub-headline {
  font-family: var(--font-header);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 32px;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.copy-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.copy-paragraphs p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.copy-paragraphs p::before {
  content: "•";
  color: var(--accent-blue);
  font-size: 1.6rem;
  line-height: 1;
  margin-top: -3px;
  flex-shrink: 0;
}

/* Demo Video Section */
.demo-video {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.03) 0%, transparent 60%);
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video-mockup {
  max-width: 800px;
  width: 100%;
}

.video-frame {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -15px rgba(15, 23, 42, 0.15),
    0 0 0 1px var(--border-color);
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  transition: var(--transition-spring);
}

.video-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 80px -15px rgba(15, 23, 42, 0.2),
    0 0 0 1px var(--border-glow),
    0 0 40px -10px rgba(6, 182, 212, 0.2);
}

.demo-mp4 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pricing Section */
.pricing {
  padding-top: 0px;
  padding-bottom: 100px;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.popular {
  border-color: rgba(14, 165, 233, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(241, 245, 249, 0.7) 100%);
}

.pop-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: #040815;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.price-header h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.price-header p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.price-amount {
  font-family: var(--font-header);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.price-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.price-features li {
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.price-features li svg {
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 1px;
  width: 16px;
  height: 16px;
}

.price-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-features li.disabled svg {
  color: var(--text-muted);
}

/* Accordion FAQs */
.faqs {
  padding: 0px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  padding: 24px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-family: var(--font-header);
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-trigger svg {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-content p {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Active FAQ styling */
.faq-item.active {
  border-color: rgba(56, 189, 248, 0.25);
  background: var(--bg-card-hover);
}

.faq-item.active .faq-trigger svg {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

.faq-item.active .faq-content {
  max-height: 1000px;
  transition: max-height 1s cubic-bezier(1, 0, 1, 0);
}

/* Footer */
footer {
  padding: 60px 0 40px 0;
  border-top: 1px solid var(--border-color);
  background: rgba(241, 245, 249, 0.8);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* How It Works */
.how-it-works {
  padding: 40px 0 !important;
  background: rgba(2, 132, 199, 0.01);
  border-top: 0px !important;
  border-bottom: 0px !important;

}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  padding: 24px;
  text-align: left;
  position: relative;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Responsive Rules */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links > a:not(.btn) {
    display: none;
    /* Hide text navigation links to avoid crowding */
  }

  .nav-container {
    height: 70px;
    padding: 0 16px;
  }

  .logo {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 0.85rem;
  }

  .nav-container {
    padding: 0 10px;
  }

  .nav-container .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 130px 0 60px 0;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 24px auto;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .sub-headline {
    font-size: 1.35rem;
    line-height: 1.4;
  }

  .copy-paragraphs {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .price-card {
    padding: 30px 20px;
  }

  /* Screenshot Responsive Settings */
  .mockup-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .screenshot-frame {
    border-radius: 10px;
  }
}

/* Agency Banner */
.agency-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto 0;
  max-width: 1100px;
  padding: 30px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.agency-banner-content {
  max-width: 65%;
}

.agency-banner h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.agency-banner p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .agency-banner {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .agency-banner-content {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
/* Language Toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 4px;
}
.lang-toggle a, .lang-toggle span.active {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.lang-toggle span.active {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.2);
}
.lang-toggle a {
  color: var(--text-secondary);
}
.lang-toggle a:hover {
  color: var(--text-primary);
  background: rgba(15, 23, 42, 0.06);
}
