/* HERO SECTION */
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1 1 320px;
  text-align: left;
  min-width: 280px;
}
.hero-mockup {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}
.hero-logo-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  background: #fff;
  padding: 1.5rem;
  border: 2px solid #eee;
}

/* COMPARISON SECTION */
.comparison-section {
  margin: 4rem 0 2rem 0;
  padding: 0 1rem;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.comparison-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  border: 1.5px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 420px;
}
.comparison-badge {
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.5em 1.2em;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.manual-badge {
  background: linear-gradient(90deg, #f87171 60%, #ef4444 100%);
  color: #fff;
}
.aktaris-badge {
  background: linear-gradient(90deg, #4ade80 60%, #22c55e 100%);
  color: #fff;
}
.comparison-icon {
  margin: 2.5rem 0 1.5rem 0;
}
.comparison-time {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 0.3em;
}
.aktaris-time {
  color: #22c55e;
}
.comparison-label {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 0.2em;
}
.aktaris-label {
  color: #22c55e;
  font-weight: 600;
}
.manual-label {
  color: #ef4444;
  font-weight: 600;
}
.comparison-desc {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 1.2em;
}
.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.comparison-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.05rem;
  margin-bottom: 0.7em;
  color: #222;
}
.comparison-list li span {
  font-size: 1.2em;
  font-weight: bold;
}
.comparison-card.manual .comparison-list li span {
  color: #ef4444;
}
.comparison-card.aktaris .comparison-list li span {
  color: #22c55e;
}
@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .comparison-card {
    min-height: 0;
  }
}

/* DEMO VIDEO SECTION */
.demo-video .container {
  max-width: 100vw;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.video-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  padding: 0.5rem;
  max-width: 380px;
  margin: 0 auto;
}
.video-frame.large {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  padding: 1rem;
  max-width: 940px;
  margin: 0 auto;
}
.browser-mockup.video-mockup {
  max-width: 1220px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  background: #fff;
  overflow: hidden;
  border: 1.5px solid #222;
}
.browser-bar {
  height: 28px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}
.browser-bar::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 14px 0 #bbb, 28px 0 #bbb;
}
.browser-content {
  padding: 0; /* Remove padding for full-width iframe */
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.browser-content iframe {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  height: auto;
  border: none;
  display: block;
}
.demo-video .browser-mockup video {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  border-radius: 0 0 12px 12px;
  background: #000;
  display: block;
}
@media (max-width: 1300px) {
  .browser-mockup.video-mockup,
  .demo-video .browser-mockup video {
    max-width: 100%;
  }
}
.demo-video .browser-mockup.video-mockup {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
}

/* FEATURES SECTION */
.features {
  background: #f7f8fa;
  padding: 4rem 1rem;
}
.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.feature-card.large-feature {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  min-height: 70px;
  font-weight: 500;
  gap: 1em;
  justify-content: flex-start;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6em;
  margin-right: 0.7em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.feature-icon.check {
  background: #e6f7ec;
  color: #1db954;
}
.feature-icon.bolt {
  background: #fff7e6;
  color: #ff9800;
}
.feature-card.large-feature span:last-child {
  font-weight: 600;
  color: #222;
}

/* CTA SECTION */
.cta {
  background: var(--bg-dark);
  color: var(--white);
  padding: 4rem 1rem;
  border-top: 2px solid #eee;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cta p {
  color: #ccc;
  margin-bottom: 2rem;
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  padding: 1rem 2.2rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid var(--primary);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
}
.chrome-logo {
  height: 1.3em;
  vertical-align: middle;
  margin-right: 0.5em;
}
