:root {
  --primary: #d37b2a;     /* Your orange */
  --primary-dark: #b46823; /* Darker orange for hover */
  --primary-light: #e3964e; /* Lighter orange */
  --secondary: #2c3649;   /* Your blue */
  --accent: #d37b2a;      /* Same as primary for consistency */
  --dark: #0f172a;
  --dark-light: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --success: #10b981;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Accessibility */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: var(--primary);
  color: white;
  padding: .75rem 1rem;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  z-index: 100;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--border-radius-sm);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--primary);
  background-color: rgba(211, 123, 42, 0.05);
}

.nav-cta {
  background-color: var(--primary);
  color: white !important;
  padding: 0.5rem 1.25rem !important;
}

.nav-cta:hover {
  background-color: var(--primary-dark) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-list {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
  }
  
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list li {
    width: 100%;
  }
  
  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: linear-gradient(135deg, rgba(211, 123, 42, 0.05) 0%, rgba(44, 54, 73, 0.05) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 20s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(211, 123, 42, 0.1);
  color: var(--primary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  font-size: 0.875rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title-highlight {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 90%;
}

.actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-accent {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(211, 123, 42, 0.3);
}

.btn-accent:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 123, 42, 0.4);
}

.btn-video {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-video:hover {
  background-color: rgba(211, 123, 42, 0.05);
}

.btn-video i {
  font-size: 1.25rem;
}

.btn-block {
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray);
}

.hero-visual {
  position: relative;
}

.dashboard-preview {
  position: relative;
  height: 400px;
}

.dashboard-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  z-index: 2;
}

.screen-header {
  height: 20px;
  background-color: var(--gray-light);
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
}

.screen-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.screen-row {
  height: 10px;
  background-color: var(--gray-light);
  border-radius: 4px;
}

.screen-row:nth-child(1) { width: 80%; }
.screen-row:nth-child(2) { width: 60%; }
.screen-row:nth-child(3) { width: 90%; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary);
  font-size: 1.25rem;
}

.floating-card span {
  font-weight: 600;
  font-size: 0.875rem;
}

.card-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 60px;
  left: -20px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20px;
  right: 30px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .dashboard-preview {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Trust */
.trust {
  padding: 2rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.trust-label {
  text-align: center;
  color: var(--gray);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--dark-light);
}

.trust-logo i {
  color: var(--primary);
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .trust-logos {
    gap: 1.5rem;
  }
  
  .trust-logo {
    font-size: 0.875rem;
  }
}

/* Features */
.features {
  padding: 5rem 0;
  background-color: white;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-lead {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  position: relative;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.card-featured {
  border: 2px solid var(--primary);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(211, 123, 42, 0.1) 0%, rgba(44, 54, 73, 0.1) 100%);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.card-desc {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.card-features {
  list-style: none;
  margin-bottom: 2rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-light);
}

.card-features i {
  color: var(--success);
  font-size: 0.875rem;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.card-link:hover {
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    padding: 3rem 0;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Feature Detail */
.feature-detail {
  padding: 5rem 0;
}

.feature-detail.alt {
  background-color: rgba(248, 250, 252, 0.5);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-grid.reverse {
  direction: rtl;
}

.feature-grid.reverse .feature-content,
.feature-grid.reverse .feature-visual {
  direction: ltr;
}

.feature-highlights {
  margin: 2rem 0 3rem;
}

.highlight {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(211, 123, 42, 0.1);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  font-size: 1.25rem;
}

.highlight-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.highlight-content p {
  color: var(--gray);
  font-size: 0.9375rem;
}

.visual-wrapper {
  position: relative;
}

.phone-mockup, .laptop-mockup, .dashboard-mockup {
  position: relative;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
}

.phone-mockup {
  max-width: 300px;
  margin: 0 auto;
  border: 10px solid var(--secondary);
  border-radius: 30px;
}

.laptop-mockup {
  max-width: 500px;
  margin: 0 auto;
  border: 15px solid var(--secondary);
  border-top-width: 20px;
  border-bottom-width: 40px;
  border-radius: 10px;
}

.dashboard-mockup {
  max-width: 450px;
  margin: 0 auto;
  padding: 2rem;
}

.phone-screen, .laptop-screen, .dashboard-screen {
  background-color: #f1f5f9;
  border-radius: 10px;
  padding: 1rem;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.app-header {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-light);
}

.app-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: white;
  border-radius: var(--border-radius-sm);
  margin-bottom: 0.75rem;
}

.app-item i {
  color: var(--primary);
}

.data-visual {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 200px;
  margin-top: 2rem;
}

.data-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 10px;
}

.screen-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.metric-item {
  flex: 1;
  text-align: center;
  padding: 1rem;
  background-color: white;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .feature-grid.reverse {
    direction: ltr;
  }
  
  .feature-visual {
    order: -1;
  }
}

/* Testimonial */
.testimonial {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote i {
  font-size: 3rem;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-name {
  font-weight: 600;
  font-size: 1.125rem;
}

.author-role {
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 3rem 0;
  }
  
  .testimonial-text {
    font-size: 1.25rem;
  }
}

/* CTA */
.cta {
  padding: 5rem 0;
  background-color: white;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.cta-sub {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark-light);
}

.cta-feature i {
  color: var(--primary);
}

.cta-form {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(211, 123, 42, 0.1);
}

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

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray);
  text-align: center;
}

@media (max-width: 1024px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a,
.footer-column li {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: white;
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}



/* Add these styles to your existing CSS file */

/* Screenshot Styles */
.feature-visual {
  position: relative;
}

.screenshot-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-light);
  background-color: white;
}

.screenshot {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.screenshot:hover {
  transform: scale(1.02);
}

.screenshot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(44, 54, 73, 0.1), rgba(44, 54, 73, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.screenshot-wrapper:hover .screenshot-overlay {
  opacity: 1;
}

.overlay-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.screenshot-wrapper:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  color: var(--primary);
  font-size: 1.25rem;
}

.overlay-content span {
  font-weight: 600;
  color: var(--dark);
}

.screenshot-caption {
  text-align: center;
  color: var(--gray);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  font-style: italic;
}

/* Add device frame effects for different screenshot types */
.feature-detail:nth-child(1) .screenshot-wrapper {
  border: 8px solid var(--secondary);
  border-radius: 20px;
}

.feature-detail:nth-child(2) .screenshot-wrapper {
  border: 12px solid var(--secondary);
  border-top-width: 20px;
  border-bottom-width: 40px;
  border-radius: 10px;
}

.feature-detail:nth-child(3) .screenshot-wrapper {
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(44, 54, 73, 0.1);
}

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

.screenshot-wrapper {
  animation: fadeInUp 0.6s ease-out;
}

.feature-detail.alt .screenshot-wrapper {
  animation-delay: 0.2s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .screenshot-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .feature-detail:nth-child(1) .screenshot-wrapper {
    border-width: 6px;
    border-radius: 16px;
  }
  
  .feature-detail:nth-child(2) .screenshot-wrapper {
    border-width: 10px;
    border-top-width: 16px;
    border-bottom-width: 30px;
  }
}

@media (max-width: 768px) {
  .screenshot-caption {
    font-size: 0.8rem;
  }
  
  .feature-detail:nth-child(1) .screenshot-wrapper {
    border-width: 4px;
    border-radius: 12px;
  }
  
  .feature-detail:nth-child(2) .screenshot-wrapper {
    border-width: 8px;
    border-top-width: 12px;
    border-bottom-width: 24px;
  }
}
