:root {
  --bg-body: #ffffff;
  --bg-soft: #f8fafc;
  --primary: #426DDC;
  /* WebYetu Blue */
  --primary-dark: #3558b0;
  --secondary: #71C846;
  /* WebYetu Green */
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 0;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities */
.text-center {
  text-align: center;
}

.justify-center {
  justify-content: center;
}

.cta-simple {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Header Light */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.site-header .container {
  height: 5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.nav-center a {
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem;
  font-size: 0.95rem;
}

.nav-center a:hover {
  color: var(--primary);
}

.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 6px;
}

/* Notifications */
.notification-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center;
}

.notification-bell {
  background: transparent !important;
  border: 1px solid transparent !important;
  font-size: 1.15rem !important;
  color: var(--text-muted) !important;
  cursor: pointer !important;
  position: relative !important;
  padding: 0.6rem !important;
  border-radius: 8px !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.notification-bell:hover {
  background-color: var(--bg-soft) !important;
  color: var(--primary) !important;
  border-color: var(--border-light) !important;
}

.notification-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #ff4757;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.notification-panel {
  position: absolute !important;
  top: calc(100% + 15px) !important;
  right: 0 !important;
  width: 360px !important;
  max-width: calc(100vw - 32px) !important;
  background: white !important;
  border-radius: 14px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  display: none !important;
  flex-direction: column !important;
  z-index: 1000 !important;
  max-height: 480px;
  overflow: hidden;
  animation: slideInDown 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* Dropdown triangle arrow */
.notification-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: white;
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
  transform: rotate(45deg);
}

.notification-panel.active {
  display: flex !important;
}

@media (max-width: 576px) {
  .notification-panel {
    position: fixed !important;
    top: 80px !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 auto !important;
    transform: none !important;
    border-radius: 20px !important;
  }
}

.notification-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.notification-header h4 {
  margin: 0 !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--text-main) !important;
  font-family: 'Outfit', sans-serif !important;
}

.notification-list {
  overflow-y: auto;
  flex: 1;
  background: #fff;
}

.notification-item {
  padding: 1.25rem 1.5rem !important;
  border-bottom: 1px solid #f1f5f9 !important;
  display: flex !important;
  gap: 1rem !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
  background: white !important;
}

.notification-item:hover {
  background: #f8fafc;
}

.notification-item.unread {
  background: rgba(66, 109, 220, 0.04);
  border-left: 3px solid var(--primary);
  padding-left: calc(1.5rem - 3px);
}

.notification-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.notification-item:hover .notification-icon {
  transform: scale(1.1);
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notification-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.notification-footer {
  padding: 1rem;
  text-align: center;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
}

.notification-footer a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.notification-footer a:hover {
  color: var(--primary-dark);
  text-decoration: underline !important;
}

.notification-empty {
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
}

.notification-empty i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.3;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .notification-panel {
    width: calc(100vw - 32px);
    right: -50px;
  }
}

@media (max-width: 900px) {
  .site-header .container {
    display: flex;
    justify-content: space-between;
  }

  .nav-center {
    display: none;
  }

  /* Hide center nav on mobile */
}

/* Hero Simple */
.hero-simple {
  padding: 4rem 0 0;
  overflow: hidden;
  position: relative;
}

.hero-badges {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.badge-soft {
  background: #eff6ff;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  border: 1px solid #dbeafe;
}

.hero-simple h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.highlight {
  color: var(--primary);
}

.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  border: none;
  font-family: 'Outfit', sans-serif;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: var(--primary) !important;
  color: white !important;
}

.btn-outline {
  background: transparent !important;
  border: 1px solid var(--border-light) !important;
  color: var(--text-main) !important;
}

.btn-outline:hover {
  background: var(--bg-soft) !important;
  border-color: var(--border-light) !important;
  color: var(--primary) !important;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.sub-cta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Laptop Visual */
.hero-visual-simple {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.laptop-clean {
  width: 100%;
  max-width: 700px;
  position: relative;
}

.laptop-screen {
  background: #1e293b;
  padding: 16px 16px 0;
  border-radius: 12px 12px 0 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.fake-site {
  background: #fff;
  height: 380px;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  position: relative;
}

/* Fake UI */
.fake-nav {
  height: 40px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.fake-logo {
  width: 80px;
  height: 12px;
  background: #cbd5e1;
  border-radius: 4px;
}

.fake-links span {
  display: inline-block;
  width: 30px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-left: 8px;
}

.fake-hero {
  padding: 40px;
  background: #f8fafc;
  text-align: center;
}

.fake-h1 {
  width: 60%;
  height: 24px;
  background: #cbd5e1;
  margin: 0 auto 16px;
  border-radius: 4px;
}

.fake-p {
  width: 80%;
  height: 12px;
  background: #e2e8f0;
  margin: 0 auto 24px;
  border-radius: 4px;
}

.fake-btn {
  width: 120px;
  height: 36px;
  background: #3b82f6;
  border-radius: 6px;
  margin: 0 auto;
}

.fake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 30px;
}

.fake-card {
  height: 100px;
  background: #f1f5f9;
  border-radius: 8px;
}

.laptop-base {
  background: #cbd5e1;
  height: 20px;
  width: 120%;
  margin-left: -10%;
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.section-benefits {
  padding: 6rem 0;
  background: var(--bg-soft);
}

.benefits-intro {
  max-width: 36rem;
  margin: 0 auto 4rem;
}

.benefits-intro h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.benefits-intro p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.icon-box.blue {
  background: #eff6ff;
  color: var(--primary);
}

.icon-box.green {
  background: #f0fdf4;
  color: #16a34a;
}

.icon-box.orange {
  background: #fff7ed;
  color: #ea580c;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Focus Action (Removed from DOM but keeping CSS for now or removing? Removing to be clean) */
/* Removed Section Focus CSS */

/* Animations */
.animate-up {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Debug Panel */
.debug-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 35vh;
  overflow: auto;
  background: #111827;
  color: #f9fafb;
  font-family: monospace;
  font-size: 12px;
  padding: 0.5rem;
  border-top: 3px solid #0ea5e9;
  z-index: 9999;
}

.debug-panel h4 {
  margin: 0.25rem 0 0.5rem 0;
  font-size: 12px;
  color: #93c5fd;
}

.debug-panel pre {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
}

/* Dark Footer */
.site-footer-dark {
  background: #0f172a;
  color: #94a3b8;
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col-brand .logo-light {
  color: white;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
}

.footer-col-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
  color: #cbd5e1;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #94a3b8;
  width: 24px;
  height: 24px;
  display: block;
}

.social-icons a:hover {
  color: #38bdf8;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: white;
  transform: translateX(2px);
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col-brand {
    text-align: center;
    margin-bottom: 2rem;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }
}

/* How It Works */
.section-how {
  padding: 6rem 0;
}

.steps-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 3rem;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-arrow {
  font-size: 2rem;
  color: #cbd5e1;
  padding-top: 1rem;
}

/* Features List */
.section-features-list {
  padding: 6rem 0;
  background: var(--bg-soft);
}

.features-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.icon-check {
  color: var(--primary);
  font-size: 1.2rem;
  background: #eff6ff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-text h4 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.feature-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Samples */
.section-samples {
  padding: 6rem 0;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sample-card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
}

.sample-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.sample-preview {
  height: 200px;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.5);
}

.sample-preview.p-1 {
  background: radial-gradient(circle at center, #38bdf8, #0ea5e9);
}

.sample-preview.p-2 {
  background: radial-gradient(circle at center, #facc15, #ca8a04);
}

.sample-preview.p-3 {
  background: radial-gradient(circle at center, #a8a29e, #57534e);
}

.sample-info {
  padding: 1.5rem;
  text-align: center;
}

.sample-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

/* Pricing */
.section-pricing {
  padding: 6rem 0;
  background: #f8fafc;
}

.pricing-card {
  background: white;
  max-width: 400px;
  margin: 3rem auto 0;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--primary);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  margin: 2rem 0;
  text-align: left;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.pricing-list li {
  color: var(--text-main);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.pricing-list li::before {
  content: "✔";
  color: var(--primary);
  font-weight: 800;
}

.width-full {
  width: 100%;
}

@media (max-width: 900px) {
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .features-list-grid {
    grid-template-columns: 1fr;
  }

  .samples-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Pricing Grid Overrides */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  transition: transform 0.2s;
  max-width: none;
  margin: 0;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  margin: 2rem 0;
  text-align: left;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.pricing-list li {
  color: var(--text-main);
  display: flex;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.95rem;
}

.pricing-list li strong {
  font-weight: 600;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 3rem auto 0;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

/* Pricing Fixes */
.pricing-card {
  overflow: visible !important;
}

.pricing-card.featured {
  margin-top: -10px;
  z-index: 10;
}

.popular-tag {
  top: -16px;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
}

/* Badge Fix */
.badge-soft {
  display: inline-block;
}

/* Remove Pricing Decoration */
.pricing-card::before {
  display: none !important;
}

/* Mobile Fix Benefits */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Enhanced Process UI */
.step-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.2s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  font-size: 1.5rem;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
  border: 4px solid #eff6ff;
  margin-bottom: 2rem;
}

.step-arrow {
  color: #cbd5e1;
  font-size: 1.5rem;
  margin-top: 5rem;
}

@media (max-width: 900px) {
  .step-arrow {
    margin: 1rem 0;
    transform: rotate(90deg);
  }

  .step-card {
    width: 100%;
  }
}

/* Mobile Header & Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 0.75rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-150%);
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  text-align: center;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main);
  text-decoration: none;
}

body.menu-open .mobile-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

body.menu-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .mobile-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .mobile-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-center {
    display: none;
  }

  .nav-right {
    display: flex;
    align-items: center;
  }
}

/* Logo Image */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .logo-img {
    height: 32px;
  }
}

/* Color Overrides */
.icon-check {
  color: var(--secondary) !important;
  background: rgba(113, 200, 70, 0.1) !important;
}

.step-icon {
  background: var(--secondary) !important;
  border-color: #f0fdf4 !important;
}

.highlight {
  color: var(--primary) !important;
}

/* Laptop Slideshow */
.slideshow-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: white;
}

.slide-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.slide-frame.active {
  opacity: 1;
  z-index: 2;
}

/* Laptop Visual Definition */
.laptop-clean {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.laptop-screen {
  background: #1e293b;
  border-radius: 12px 12px 0 0;
  padding: 3%;
  position: relative;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16/10;
  border: 12px solid #334155;
  border-bottom: none;
  overflow: hidden;
}

.laptop-base {
  height: 24px;
  background: #cbd5e1;
  border-radius: 0 0 16px 16px;
  position: relative;
  width: 120%;
  left: -10%;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1) inset;
}

.laptop-base::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: #94a3b8;
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
}


/* Desktop Mode Scaling */
.slide-frame {
  width: 200% !important;
  height: 200% !important;
  transform: scale(0.5) !important;
  transform-origin: 0 0 !important;
}


/* FORCE BEZEL REMOVAL V2 */
.laptop-screen {
  border: 10px solid #334155 !important;
  padding: 0 !important;
  border-radius: 6px 6px 0 0 !important;
  background: black !important;
}

/* Fix Laptop Base Centering V2 */
.laptop-base {
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 130% !important;
}


/* Fix Laptop Base - 120% Width Centered */
.laptop-base {
  width: 120% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-left: 0 !important;
  border-radius: 0 0 16px 16px !important;
}

/* Hide Scrollbar in Slideshow Iframes */
.slide-frame {
  scrollbar-width: none !important;
  /* Firefox */
  -ms-overflow-style: none !important;
  /* IE/Edge */
}

.slide-frame::-webkit-scrollbar {
  display: none !important;
  /* Chrome/Safari */
}


/* Hide Scrollbar by Clipping - Make iframe wider, clip overflow */
.slideshow-wrapper {
  overflow: hidden !important;
}

/* Force Desktop Mode + Hide Scrollbar */
.slide-frame {
  width: calc(200% + 40px) !important;
  height: 200% !important;
  transform: scale(0.5) !important;
  transform-origin: 0 0 !important;
  margin-right: -40px !important;
}

.slideshow-wrapper {
  overflow: hidden !important;
  position: relative !important;
}

/* Fake Cursor Pointer - SVG Based */
.fake-cursor {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 100;
  pointer-events: none;
  transition: left 1.5s ease-out, top 1.5s ease-out;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><path fill='black' d='M2 2 L2 26 L8 20 L12 30 L16 28 L12 18 L22 18 Z'/></svg>") no-repeat;
  background-size: contain;
}

/* Browser Chrome UI - Chrome Style */
.browser-chrome {
  display: flex;
  align-items: center;
  background: #dee1e6;
  padding: 4px 8px;
  gap: 8px;
  position: relative;
  z-index: 50;
}

.browser-buttons {
  display: flex;
  gap: 4px;
}

.browser-buttons span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.btn-close {
  background: #ff5f57;
}

.btn-minimize {
  background: #ffbd2e;
}

.btn-maximize {
  background: #28c840;
}

.browser-url-bar {
  flex: 1;
  background: #f1f3f4;
  border-radius: 12px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #333;
}

.url-icon {
  font-size: 9px;
  color: #5a5a5a;
}

.url-text {
  color: #5a5a5a;
  font-family: system-ui, sans-serif;
  font-size: 11px;
}

.browser-actions {
  color: #5a5a5a;
  font-size: 12px;
}

.slideshow-wrapper {
  height: calc(100% - 28px) !important;
}

/* Devices Showcase Section */
.devices-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

/* Laptop Device */
.device-laptop {
  max-width: 600px;
}

.laptop-frame {
  background: #1e293b;
  border-radius: 12px;
  padding: 8px;
}

.laptop-screen-showcase {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.laptop-stand {
  width: 40%;
  height: 20px;
  background: #cbd5e1;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
}

.browser-chrome-mini {
  display: flex;
  align-items: center;
  background: #e5e7eb;
  padding: 4px 8px;
  gap: 4px;
  font-size: 10px;
}

.browser-chrome-mini .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #28c840;
}

.url-mini {
  margin-left: 8px;
  color: #666;
}

.slideshow-showcase {
  position: relative;
  height: calc(100% - 24px);
  overflow: hidden;
}

.showcase-frame {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.showcase-frame.active {
  opacity: 1;
  z-index: 1;
}

.showcase-frame.desktop {
  width: 200%;
  height: 200%;
  transform: scale(0.5);
  transform-origin: 0 0;
}

/* Phone Device */
.device-phone {
  max-width: 180px;
}

.phone-frame {
  background: #1e293b;
  border-radius: 24px;
  padding: 8px;
  position: relative;
}

.phone-notch {
  width: 60px;
  height: 20px;
  background: #1e293b;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/19;
  position: relative;
}

.showcase-frame.mobile {
  width: 100%;
  height: 100%;
}


/* Showcase Section Layout */
.devices-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
  flex-wrap: wrap;
}

.showcase-laptop {
  max-width: 550px;
  flex-shrink: 0;
}

/* Phone Device */
.phone-device {
  flex-shrink: 0;
}

.phone-frame {
  background: #1e293b;
  border-radius: 32px;
  padding: 10px;
  width: 180px;
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #1e293b;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  height: 350px;
  position: relative;
}

.phone-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.phone-iframe.active {
  opacity: 1;
  z-index: 1;
}


/* Showcase Section - Proper Scaling */
.showcase-laptop .slide-frame {
  width: 300% !important;
  height: 300% !important;
  transform: scale(0.333) !important;
  transform-origin: 0 0 !important;
}

.phone-iframe {
  width: 300% !important;
  height: 300% !important;
  transform: scale(0.333) !important;
  transform-origin: 0 0 !important;
}


/* Phone - Less Round, No Notch */
.phone-frame {
  border-radius: 16px !important;
}

.phone-notch {
  display: none !important;
}

.phone-screen {
  border-radius: 10px !important;
}


/* Hide Scrollbars on Showcase Devices */
.showcase-desktop,
.showcase-mobile,
.phone-iframe {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.showcase-desktop::-webkit-scrollbar,
.showcase-mobile::-webkit-scrollbar,
.phone-iframe::-webkit-scrollbar {
  display: none !important;
}

.slideshow-wrapper,
.phone-screen {
  overflow: hidden !important;
}


/* Center Phone Content */
.phone-iframe {
  left: 50% !important;
  transform: translateX(-50%) scale(0.333) !important;
  transform-origin: top center !important;
}


/* Fix Phone Content Centering */
.phone-screen {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

.phone-iframe {
  position: relative !important;
  left: auto !important;
  transform: none !important;
  width: 100% !important;
  height: 100% !important;
}


/* Phone Final Fix - Immediate Display + Zoom Fix */
.phone-iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 300% !important;
  height: 300% !important;
  transform: scale(0.333) !important;
  transform-origin: 0 0 !important;
  border: none !important;
  opacity: 0;
  transition: opacity 0.5s;
}

.phone-iframe.active {
  opacity: 1 !important;
  z-index: 1 !important;
}

.phone-screen {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
}


/* Force Desktop View on Hero Laptop at All Viewports */
.hero-visual-simple .slide-frame {
  width: 300% !important;
  height: 300% !important;
  transform: scale(0.333) !important;
  transform-origin: 0 0 !important;
}