:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-accent: #f1f5f9;
  --bg-emerald-light: #ecfdf5;
  --border-color: #e2e8f0;
  --border-emerald: #a7f3d0;
  --primary: #059669; /* Emerald 600 */
  --primary-hover: #047857; /* Emerald 700 */
  --primary-light: #34d399; /* Emerald 400 */
  --primary-glow: rgba(5, 150, 105, 0.1);
  --text-primary: #0f172a; /* Slate 900 */
  --text-secondary: #475569; /* Slate 600 */
  --text-muted: #64748b; /* Slate 500 */
  --accent-gold: #d97706; /* Amber 600 */
  --accent-blue: #2563eb; /* Blue 600 */
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  overflow-x: hidden;
  width: 100vw;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px var(--primary-glow);
  cursor: pointer;
}

.btn-detail:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.25);
  color: white;
  text-decoration: none;
}

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

/* Header */
header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

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

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

.brand-logo {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 1.25rem;
  font-family: var(--font-title);
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2);
}

.brand-name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--primary);
}

.header-nav {
  display: flex;
  gap: 1rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

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

.nav-link.active {
  color: white;
  background: var(--primary);
}

/* Hero Section */
.hero {
  padding: 0;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0 5rem 0;
}

.hero-left {
  text-align: left;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-emerald-light);
  border: 1px solid var(--border-emerald);
  color: var(--primary);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-right::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Browser Mockup Window */
.browser-mockup {
  background: white;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.browser-mockup:hover {
  transform: translateY(-4px);
}

.browser-titlebar {
  height: 36px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.4rem;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dot.red { background: #ef4444; }
.browser-dot.yellow { background: #f59e0b; }
.browser-dot.green { background: #10b981; }

.browser-content {
  position: relative;
  padding-top: 56.25%; /* 16:9 Ratio */
  background: #f1f5f9;
}

.browser-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Mobile Phone Mockup */
.phone-mockup {
  width: 250px;
  height: 500px;
  background: #0f172a;
  border: 10px solid #020617;
  border-radius: 36px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.phone-mockup:hover {
  transform: translateY(-4px);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 16px;
  background: #020617;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 20;
}

.phone-screen {
  flex-grow: 1;
  position: relative;
  background: #f1f5f9;
}

.phone-screen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Value Cards / Value Proposition */
.value-section {
  padding: 5rem 0;
  background: white;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.value-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.25rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--border-emerald);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Alternating Showcase Sections */
.overview-section {
  padding: 5rem 0;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.showcase-row:last-child {
  border-bottom: none;
  padding-bottom: 2rem;
}

.showcase-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.showcase-info h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
}

.showcase-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.showcase-media {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.showcase-media::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Responsive updates */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 4rem 0;
  }
  .hero-left {
    text-align: center;
  }
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .showcase-row.reverse .showcase-media {
    grid-row: 2;
  }
  .showcase-info {
    text-align: center;
  }
  .showcase-info .btn-detail {
    align-self: center;
  }
}

/* Base Pricing Plans Section */
.pricing-section {
  padding: 5rem 0;
  background: white;
  border-top: 1px solid var(--border-color);
}

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

.price-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.price-card.popular {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 20px 25px -5px rgba(5, 150, 105, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 750;
  margin-bottom: 0.5rem;
}

.price-card .price-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.price-card .price {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.price-card .price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
}

.pricing-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-features li.disabled::before {
  content: "×";
  color: var(--text-muted);
}

.btn-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366; /* WhatsApp Green */
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem;
  border-radius: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-quote:hover {
  background: #20ba56;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-quote svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

.price-card.popular .btn-quote {
  background: var(--primary);
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2);
}

.price-card.popular .btn-quote:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 15px rgba(5, 150, 105, 0.35);
}


/* Custom Quote Box Styling */
.quote-box {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.quote-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.quote-content h3 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.quote-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quote-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.quote-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: left;
}

.quote-features li strong {
  color: var(--text-primary);
}

.quote-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-emerald-light);
  color: var(--primary);
  flex-shrink: 0;
}

.quote-card {
  background: white;
  border: 1px solid var(--border-color);
  border-left: 6px solid var(--primary);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.quote-card h4 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.quote-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.quote-price-indicator {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

/* Brand Logo Styling */
.brand img {
  height: 36px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.05);
}

/* Footer Styles */
footer {
  background: #ffffff;
  color: var(--text-secondary);
  padding: 5rem 0 3rem 0;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  text-align: left;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col h4 {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.footer-brand .brand {
  align-self: flex-start;
}

.footer-brand .brand-name {
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-cta p {
  line-height: 1.5;
}

.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #25d366;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  align-self: flex-start;
}

.btn-whatsapp-footer:hover {
  background: #20ba56;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-footer svg {
  fill: currentColor;
  width: 20px;
  height: 20px;
}

/* Compact Footer Developer Badge Layout (Premium & Modern) */
.footer-developer-compact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.dev-compact-badge {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.01);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dev-compact-badge:hover {
  transform: translateY(-1px);
  border-color: var(--primary-light);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.06);
}

.dev-compact-avatar {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  user-select: none;
}

.dev-compact-avatar.axzy {
  background: #4f46e5; /* Indigo 600 */
}

.dev-compact-avatar.isst {
  background: #db2777; /* Pink 600 */
}

.dev-compact-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.dev-compact-title {
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--text-primary);
}

.dev-compact-role-pill {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.dev-compact-actions {
  display: flex;
  gap: 0.35rem;
  border-left: 1px solid var(--border-color);
  padding-left: 0.65rem;
}

.dev-action-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: var(--bg-accent);
  transition: all 0.2s ease;
}

.dev-action-btn:hover {
  color: var(--primary);
  background: var(--bg-emerald-light);
}

.dev-action-btn svg {
  stroke: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .profiles-grid {
    grid-template-columns: 1fr;
  }
}

/* Sections Detail Inner Pages Specific CSS */
.workspace-detail {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.detail-sidebar {
  position: sticky;
  top: 100px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
}

.detail-sidebar h4 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.detail-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.detail-nav-item button {
  width: 100%;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.detail-nav-item button:hover {
  color: var(--primary);
  background: var(--bg-main);
}

.detail-nav-item button.active {
  color: var(--primary);
  background: var(--bg-emerald-light);
  border-color: var(--border-emerald);
  font-weight: 700;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-header {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 6px solid var(--primary);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  box-shadow: var(--card-shadow);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.detail-header-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.detail-header h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.detail-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
}

.detail-header-stats {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.stat-pill {
  background: var(--bg-emerald-light);
  border: 1px solid var(--border-emerald);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 750;
  width: fit-content;
}

.stat-pill.secondary {
  background: var(--bg-accent);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.detail-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
}

.detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--card-shadow-hover);
}

.detail-card-preview {
  position: relative;
  padding-top: 56.25%;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.detail-card-preview img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.detail-card-body {
  padding: 1.25rem;
}

.detail-card-module {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.detail-card-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Lightbox details updated for Light theme */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.95);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  grid-template-columns: 1fr 420px;
}

.lightbox.active {
  display: grid;
  opacity: 1;
}

.lightbox-viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  height: 100%;
}

.lightbox-img-container {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: #f1f5f9;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-img.portrait {
  max-height: 82vh;
  width: auto;
}

.lightbox-sidebar {
  background: #ffffff;
  border-left: 1px solid var(--border-color);
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  color: var(--text-primary);
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1001;
}

.close-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2px;
}

.close-btn:hover {
  background: rgba(239, 68, 68, 0.8);
  color: white;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.nav-arrow:hover {
  background: var(--primary);
  color: white;
}

.nav-arrow-left { left: 1rem; }
.nav-arrow-right { right: 1rem; }

.lightbox-sidebar .sidebar-module {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lightbox-sidebar .sidebar-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lightbox-sidebar .sidebar-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.lightbox-sidebar h4 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.lightbox-sidebar p.details-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.tech-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tech-pill {
  background: var(--bg-accent);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--text-secondary);
}

.tech-pill.highlight {
  background: var(--bg-emerald-light);
  border-color: var(--border-emerald);
  color: var(--primary);
}

/* Empty Search state details */
.empty-state {
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  text-align: center;
  border: 2px dashed var(--border-color);
  border-radius: 12px;
}

/* Search Bar Styles */
.search-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 1.5rem auto;
}

.search-input {
  width: 100%;
  background: white;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.85rem 1.25rem 0.85rem 3.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow), 0 4px 12px rgba(5, 150, 105, 0.08);
}

.search-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-input:focus + .search-icon {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .quote-box {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .workspace-detail {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
  }
  .lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 280px;
  }
  .lightbox-sidebar {
    height: 280px;
    padding: 1.5rem;
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
}

/* Showcase Carousel Styles */
.showcase-carousel-section {
  padding: 2rem 0 4rem 0;
}

/* Horizontal Segment Filters */
.carousel-tabs-container {
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.carousel-tabs {
  display: flex;
  gap: 0.35rem;
  background: var(--bg-accent);
  padding: 0.35rem;
  border-radius: 100px;
  border: 1px solid var(--border-color);
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  max-width: 100%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}

.carousel-tabs::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.carousel-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.6rem 1.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-tab-btn:hover {
  color: var(--primary);
}

.carousel-tab-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  font-weight: 700;
}

/* Carousel Layout & Card */
.carousel-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: var(--card-shadow);
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.carousel-slide-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  width: 100%;
  align-items: center;
}

/* Beautiful grid / gradient mockup wrapper */
.carousel-media-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 1px solid var(--border-color);
  box-shadow: inset 0 2px 10px rgba(15, 23, 42, 0.02);
  position: relative;
}

.carousel-media-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.4;
  border-radius: 20px;
  pointer-events: none;
}

.carousel-media-col .browser-mockup {
  width: 100%;
  max-width: 600px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  background: white;
}

.carousel-media-col .phone-mockup {
  width: 240px;
  height: 480px;
  border: 8px solid #0f172a;
  border-radius: 36px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  background: #0f172a;
}

.carousel-img-container {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.browser-mockup .carousel-img-container {
  padding-top: 56.25%; /* 16:9 */
}

.phone-mockup .carousel-img-container {
  height: 100%;
  width: 100%;
}

#carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.25s ease-in-out;
}

.phone-mockup #carousel-img {
  object-fit: cover;
}

/* Info Side Styling */
.carousel-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.carousel-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--bg-emerald-light);
  border: 1px solid var(--border-emerald);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.carousel-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.carousel-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.carousel-tech-container {
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.carousel-tech-container h4 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

/* Clean Arrow buttons */
.carousel-nav-btn {
  background: white;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--card-shadow);
  z-index: 10;
  flex-shrink: 0;
}

.carousel-nav-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
}

.carousel-progress-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-counter {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 80%;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.carousel-dot:hover {
  background: var(--text-muted);
}

.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* Mobile responsive carousel */
@media (max-width: 992px) {
  .detail-header {
    padding: 2rem;
    border-radius: 24px;
  }
  .carousel-container {
    padding: 2rem;
  }
  .carousel-slide-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .carousel-media-col {
    padding: 2rem 1rem;
  }
  .carousel-info-col {
    align-items: center;
    text-align: center;
  }
  .carousel-badge {
    align-self: center;
  }
  .carousel-nav-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
  }
  .prev-btn {
    left: 1rem;
  }
  .next-btn {
    right: 1rem;
  }
}

/* ==========================================================================
   Footer Developer Compact Badges
   ========================================================================== */

.footer-developer-compact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 1.5rem auto;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.dev-compact-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.dev-compact-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  border-color: var(--primary);
}

.dev-compact-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
}

.dev-compact-avatar.axzy {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.dev-compact-avatar.isst {
  background: linear-gradient(135deg, #059669, #047857);
}

.dev-compact-info {
  display: flex;
  flex-direction: column;
}

.dev-compact-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.2;
}

.dev-compact-role-pill {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.dev-compact-actions {
  display: flex;
  gap: 0.5rem;
  margin-left: 0.5rem;
  border-left: 1px solid var(--border-color);
  padding-left: 1rem;
}

.dev-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-accent);
  color: var(--text-secondary);
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.dev-action-btn:hover {
  background: white;
  color: var(--primary);
  border-color: var(--border-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  /* Header navigation responsive stack */
  .header-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .header-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .nav-link {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
  }

  /* Detail Header responsive */
  .detail-header {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
  }
  .detail-header h2 {
    font-size: 1.75rem;
  }
  .detail-header p {
    font-size: 0.9rem;
  }
  
  /* Carousel responsive */
  .carousel-container {
    padding: 1.5rem;
    border-radius: 16px;
    min-height: auto;
  }
  .carousel-media-col {
    padding: 1.5rem 0.75rem;
    border-radius: 14px;
  }
  .carousel-media-col::before {
    border-radius: 14px;
  }
  .carousel-title {
    font-size: 1.5rem;
  }
  .carousel-desc {
    font-size: 0.88rem;
  }
  
  /* Quote section responsive padding */
  .quote-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  .quote-price-indicator {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .quote-features li {
    font-size: 0.88rem;
  }

  /* Lightbox close button offset on mobile */
  .close-btn {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }
  
  .lightbox-sidebar {
    padding: 1.25rem;
    overflow-y: auto;
  }
  
  .lightbox-sidebar .sidebar-title {
    font-size: 1.25rem;
  }

  /* Footer Developer Compact responsive */
  .footer-developer-compact {
    flex-direction: column;
    gap: 1rem;
  }
  .dev-compact-badge {
    width: 100%;
    justify-content: center;
  }
}
