/* Import Google Fonts - Modern Outfit and Plus Jakarta Sans */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* CSS Variables */
:root {
  --primary-teal: #089881;
  --primary-teal-rgb: 8, 152, 129;
  --bg-dark: #190f10;
  --bg-dark-rgb: 25, 15, 16;
  --bg-card: rgba(25, 15, 16, 0.65);
  --text-light: #fdfbf8;
  --text-muted: rgba(253, 251, 248, 0.65);
  --text-dim: rgba(253, 251, 248, 0.4);
  --border-color: rgba(8, 152, 129, 0.12);
  --border-glow: rgba(8, 152, 129, 0.35);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Typography with optimized weights and tracking */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h2 {
  background: linear-gradient(135deg, var(--text-light) 0%, rgba(253, 251, 248, 0.8) 50%, rgba(253, 251, 248, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 span {
  color: var(--primary-teal);
  -webkit-text-fill-color: var(--primary-teal);
  background: none;
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(8, 152, 129, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-teal);
}

/* Background Gradients & Glow Orbs */
.bg-gradients {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-teal-rgb), 0.15) 0%, rgba(var(--primary-teal-rgb), 0) 70%);
  filter: blur(80px);
  animation: orb-float 15s infinite ease-in-out;
}

.glow-orb-1 {
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  animation-duration: 20s;
}

.glow-orb-2 {
  top: 40%;
  left: -200px;
  background: radial-gradient(circle, rgba(var(--primary-teal-rgb), 0.12) 0%, rgba(var(--primary-teal-rgb), 0) 70%);
  animation-delay: -5s;
}

.glow-orb-3 {
  bottom: -150px;
  right: -150px;
  animation-delay: -10s;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  padding: 96px 0;
  overflow: hidden; /* Prevent background watermarks from causing horizontal scrollbars */
}

/* Faded Branding Background Watermark */
.bg-watermark {
  position: absolute;
  background-image: url('assets/Kanncommerce logo-02.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.025; /* Subtle branding accent */
  pointer-events: none;
  z-index: 1;
  filter: grayscale(1) invert(1) brightness(1.6);
  mix-blend-mode: screen;
}

/* Glassmorphism Classes - Modernized with gradients */
.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%), var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(8, 152, 129, 0.25);
  background: linear-gradient(180deg, rgba(8, 152, 129, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%), var(--bg-card);
  box-shadow: 0 15px 40px -15px rgba(8, 152, 129, 0.2);
}

/* Buttons with click feedback and smooth transitions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 8px;
  user-select: none;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background-color: var(--primary-teal);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(var(--primary-teal-rgb), 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-teal-rgb), 0.4);
}

.btn-primary:active {
  transform: scale(0.96) translateY(0);
}

.btn-secondary {
  background-color: rgba(253, 251, 248, 0.05);
  color: var(--text-light);
  border: 1px solid rgba(253, 251, 248, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(253, 251, 248, 0.1);
  border-color: var(--primary-teal);
  transform: translateY(-3px);
}

/* Badge style */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(8, 152, 129, 0.1);
  color: var(--primary-teal);
  border: 1px solid rgba(8, 152, 129, 0.2);
  margin-bottom: 24px;
  gap: 6px;
}

/* Custom Uniform Illustration SVG Icons */
.icon-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: var(--primary-teal);
}

.btn-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.bullet-icon {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  flex-shrink: 0;
}

.bullet-icon.error-icon {
  color: #ff5a5f;
}

.bullet-icon.success-icon {
  color: var(--primary-teal);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1152px;
  z-index: 100;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 52px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(25, 15, 16, 0.7);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-teal);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: #190f10;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hero Brand Pattern */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-brand-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hbp {
  position: absolute;
  object-fit: contain;
  user-select: none;
}


.hbp-1 {
  width: 1800px;
  bottom: -780px;
  left: -680px;
  transform: rotate(-15deg);
  opacity: 0.12;
  filter: drop-shadow(0 0 64px rgba(0,180,160,0.3));
}

/* Card Brand Object (problem cards) */
.card-brand-obj {
  position: absolute;
  width: 1000px;
  bottom: -440px;
  left: -380px;
  transform: rotate(-15deg);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 32px rgba(0,180,160,0.25));
  z-index: 0;
}

/* Section Brand Object (full-section watermark) */
.section-brand-obj {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section-brand-right {
  width: 1800px;
  bottom: -780px;
  right: -680px;
  transform: rotate(15deg);
  opacity: 0.12;
  filter: drop-shadow(0 0 64px rgba(0,180,160,0.3));
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-light) 0%, rgba(253, 251, 248, 0.8) 50%, rgba(253, 251, 248, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  color: var(--primary-teal);
  -webkit-text-fill-color: var(--primary-teal);
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right Side Mock Dashboard */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-container {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  position: relative;
}

/* Logo image styling */
.main-visual-logo {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: logo-glow 6s infinite ease-in-out;
  border-radius: 50%;
  padding: 10px;
  background: rgba(25, 15, 16, 0.6);
  border: 1px solid var(--border-color);
  box-shadow: 0 0 40px rgba(8, 152, 129, 0.2);
}

@keyframes logo-glow {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(8, 152, 129, 0.2);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 60px rgba(8, 152, 129, 0.4);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.dashboard-card {
  position: absolute;
  padding: 16px;
  width: 220px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  animation: float-card 8s infinite ease-in-out;
}

.card-readiness {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.card-demand {
  bottom: 0;
  left: -20px;
  width: 240px;
  animation-delay: -2s;
}

.card-mentor {
  top: 40px;
  right: -20px;
  width: 230px;
  animation-delay: -4s;
}

.card-roadmap {
  bottom: 20px;
  right: 0;
  width: 210px;
  animation-delay: -6s;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

/* Card content styling */
.card-header-small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(8, 152, 129, 0.1);
  padding-bottom: 6px;
}

.card-header-small h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.card-header-small span {
  font-size: 0.75rem;
  color: var(--primary-teal);
}

/* Readiness circular progress style */
.readiness-ring {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.readiness-ring svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.readiness-ring circle {
  fill: none;
  stroke-width: 6;
}

.readiness-bg {
  stroke: rgba(253, 251, 248, 0.05);
}

.readiness-bar {
  stroke: var(--primary-teal);
  stroke-dasharray: 220;
  stroke-dashoffset: 48;
  /* 78% score */
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-out;
}

.readiness-score {
  position: absolute;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.readiness-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Demand bar chart style */
.demand-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 70px;
  padding: 10px 0;
  gap: 8px;
}

.demand-bar {
  flex: 1;
  background: rgba(8, 152, 129, 0.15);
  border-radius: 4px;
  position: relative;
  height: 0;
  transition: height 1s ease-out;
}

.demand-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-teal);
  border-radius: 4px;
  opacity: 0.8;
}

.demand-bar-1 {
  height: 40%;
}

.demand-bar-2 {
  height: 60%;
}

.demand-bar-3 {
  height: 85%;
}

.demand-bar-4 {
  height: 50%;
}

.demand-bar-5 {
  height: 95%;
}

/* AI Mentor Chat UI styles */
.mentor-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 140px;
  overflow-y: auto;
  font-size: 0.75rem;
}

.chat-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 85%;
}

.chat-user {
  background: rgba(253, 251, 248, 0.05);
  color: var(--text-light);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-ai {
  background: rgba(8, 152, 129, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(8, 152, 129, 0.15);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

/* Roadmap style */
.roadmap-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.roadmap-item.completed {
  color: var(--text-light);
}

.roadmap-item.completed .checkbox {
  background-color: var(--primary-teal);
  border-color: var(--primary-teal);
}

.roadmap-item.completed .checkbox::after {
  content: '✓';
  color: var(--text-light);
  font-size: 0.6rem;
}

.checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(253, 251, 248, 0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Problem Section */
.problem-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.problem-heading h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.problem-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.problem-illustration-container {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: rgba(253, 251, 248, 0.01);
  border: 1px solid rgba(253, 251, 248, 0.04);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  transition: var(--transition-smooth);
}

.problem-card:hover .problem-illustration-container {
  background: rgba(253, 251, 248, 0.02);
  border-color: rgba(253, 251, 248, 0.08);
}

.problem-card.solution-card:hover .problem-illustration-container {
  background: rgba(8, 152, 129, 0.04);
  border-color: rgba(8, 152, 129, 0.15);
}

.problem-illustration-svg {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.problem-card:hover .problem-illustration-svg {
  transform: scale(1.04);
}

.problem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #ff5a5f;
  display: flex;
  align-items: center;
  gap: 12px;
}

.problem-card.solution-card h3 {
  color: var(--primary-teal);
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
}

.problem-list li span {
  font-size: 1.25rem;
  line-height: 1;
}

/* Features/Services Section */
.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.features-header h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(8, 152, 129, 0.1);
  border: 1px solid rgba(8, 152, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-teal);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Bento Grid Layout styling */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 24px;
  margin-top: 48px;
}

.bento-item {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  height: 100%;
}

.bento-tall {
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

/* Bento item content alignments */
.bento-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.bento-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0;
}

.bento-header p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Card 1: Tags visual */
.bento-visual-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.bento-tag {
  background: rgba(253, 251, 248, 0.04);
  border: 1px solid rgba(253, 251, 248, 0.08);
  color: var(--text-light);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 6px;
}

/* Card 2: Progress visual */
.bento-progress-visual {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-progress-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.bento-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(253, 251, 248, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.bento-progress-fill {
  height: 100%;
  background: var(--primary-teal);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--primary-teal);
}

/* Card 3: Chat bubbles visual */
.bento-chat-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(253, 251, 248, 0.03);
}

.bento-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  line-height: 1.4;
  max-width: 85%;
}

.bento-bubble.user-bubble {
  background: rgba(253, 251, 248, 0.06);
  color: var(--text-light);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.bento-bubble.ai-bubble {
  background: rgba(8, 152, 129, 0.08);
  border: 1px solid rgba(8, 152, 129, 0.15);
  color: var(--text-light);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

/* Card 4: Wide flex split visual */
.bento-flex-row {
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.bento-flex-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.bento-flex-graphic {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.bento-flex-graphic img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

.bento-visual-badges {
  display: flex;
  gap: 12px;
}

/* Card 5: Memory dots */
.bento-memory-slots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.memory-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(253, 251, 248, 0.1);
}

.memory-dot.active {
  background: var(--primary-teal);
  box-shadow: 0 0 8px var(--primary-teal);
}

.memory-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-teal);
  margin-left: 4px;
}

/* Card 6 & 7: Chips visual */
.bento-roadmap-visual,
.bento-plan-visual {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}

.roadmap-chip,
.plan-chip {
  background: rgba(8, 152, 129, 0.08);
  border: 1px solid rgba(8, 152, 129, 0.15);
  color: var(--primary-teal);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 6px;
}

/* Interactive Showcase Section */
.showcase {
  background: radial-gradient(100% 100% at 50% 0%, rgba(8, 152, 129, 0.05) 0%, rgba(25, 15, 16, 0) 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase-chat-interface {
  padding: 24px;
  height: 380px;
  display: flex;
  flex-direction: column;
}

.showcase-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.showcase-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(8, 152, 129, 0.3);
}

.showcase-chat-status h4 {
  font-size: 0.95rem;
}

.showcase-chat-status span {
  font-size: 0.75rem;
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  gap: 4px;
}

.showcase-chat-status span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-teal);
}

.showcase-chat-body {
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
  margin-bottom: 16px;
}

.showcase-chat-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 80%;
  animation: bubble-in 0.3s ease-out forwards;
}

@keyframes bubble-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.showcase-chat-bubble.user {
  background: rgba(253, 251, 248, 0.05);
  color: var(--text-light);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.showcase-chat-bubble.ai {
  background: rgba(8, 152, 129, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(8, 152, 129, 0.15);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.showcase-chat-suggestions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.suggestion-btn {
  padding: 8px 14px;
  background: rgba(253, 251, 248, 0.03);
  border: 1px solid rgba(253, 251, 248, 0.1);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.suggestion-btn:hover {
  background: rgba(8, 152, 129, 0.1);
  border-color: var(--primary-teal);
  color: var(--text-light);
}

.showcase-chat-input {
  display: flex;
  gap: 12px;
}

.showcase-chat-input input {
  flex-grow: 1;
  background: rgba(25, 15, 16, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 12px 20px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.showcase-chat-input input:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 10px rgba(8, 152, 129, 0.2);
}

.showcase-chat-input button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-teal);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.showcase-chat-input button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(8, 152, 129, 0.4);
}

/* Calculator Visual styles */
.showcase-calc {
  padding: 32px;
}

.showcase-calc h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.slider-label span:last-child {
  color: var(--primary-teal);
  font-weight: 600;
}

.slider-group input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(253, 251, 248, 0.1);
  border-radius: 3px;
  outline: none;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-teal);
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: 0 0 8px rgba(8, 152, 129, 0.5);
}

.slider-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-score-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.calc-score-text {
  max-width: 240px;
}

.calc-score-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.calc-score-text p {
  font-size: 0.8rem;
}

/* Process Section */
.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.process-header h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
  max-width: 280px;
}

/* Call to Action Section */
.cta-section {
  padding-bottom: 120px;
}

.cta-card {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(100% 100% at 50% 50%, rgba(8, 152, 129, 0.15) 0%, rgba(25, 15, 16, 0.8) 100%);
  border: 1px solid var(--border-color);
  border-radius: 32px;
}

.cta-card h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-card p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 64px 0 32px 0;
  border-top: 1px solid rgba(253, 251, 248, 0.05);
  background: rgba(25, 15, 16, 0.4);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo p {
  max-width: 320px;
  font-size: 0.9rem;
}

.footer-links-group h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-teal);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(253, 251, 248, 0.05);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-wide {
    grid-column: span 2;
  }
}

@media (max-width: 809.98px) {
  section {
    padding: 64px 0;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-tall {
    grid-row: span 1;
  }

  .bento-wide {
    grid-column: span 1;
  }

  .bento-flex-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .bento-flex-content {
    flex: none;
    width: 100%;
  }

  .bento-flex-graphic {
    flex: none;
    width: 100%;
    margin-top: 16px;
  }

  .navbar {
    width: calc(100% - 32px);
    top: 16px;
    padding: 0 16px;
  }

  .nav-links {
    display: none;
    /* Mobile menu can be toggled */
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-card {
    padding: 48px 24px;
  }

  .cta-card h2 {
    font-size: 2.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* AI Typing Indicator Animation */
.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.4;
  animation: typing-dot-bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-dot-bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Custom interactive input polishing */
.showcase-chat-bubble {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: bubble-in-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bubble-in-up {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.showcase-chat-bubble.user {
  background: rgba(253, 251, 248, 0.06);
  border: 1px solid rgba(253, 251, 248, 0.08);
}

.showcase-chat-bubble.ai {
  background: rgba(8, 152, 129, 0.07);
  border: 1px solid rgba(8, 152, 129, 0.15);
  box-shadow: 0 4px 20px rgba(8, 152, 129, 0.04);
}

/* ==========================================
   PRESENTATION ALIGNED LAYOUTS & SVG FILTERS
   ========================================== */

/* SVG Color Invert Filter (turns black paths to themed off-white) */
.svg-white {
  filter: invert(1) brightness(1.75);
  transition: var(--transition-smooth);
}

.process-step:hover .svg-white {
  filter: invert(1) brightness(2.0);
}

/* Process Step Illustration Wrapper */
.step-illustration-container {
  width: 100%;
  max-width: 240px;
  height: 160px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(253, 251, 248, 0.02);
  border: 1px solid rgba(253, 251, 248, 0.04);
  transition: var(--transition-smooth);
}

.process-step:hover .step-illustration-container {
  border-color: rgba(8, 152, 129, 0.25);
  background: rgba(8, 152, 129, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -10px rgba(8, 152, 129, 0.2);
}

.step-svg {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

/* Pricing Plans Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.price-card {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.price-card .price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 48px;
  line-height: 1.4;
}

.price-card .price-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  flex-grow: 1;
}

.price-card .price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.price-card .price-features li::before {
  content: '✓';
  color: var(--primary-teal);
  font-weight: 700;
}

/* Security Badges Grid */
.pricing-footer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.info-badge-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-badge-card .badge-icon {
  font-size: 1.5rem;
  color: var(--primary-teal);
  background: rgba(8, 152, 129, 0.08);
  border: 1px solid rgba(8, 152, 129, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-badge-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-badge-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Timeline / Operating System styling */
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-teal) 0%, rgba(8, 152, 129, 0.15) 100%);
}

.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--primary-teal);
  color: var(--primary-teal);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(8, 152, 129, 0.1);
  transition: var(--transition-bounce);
}

.timeline-item:hover .timeline-dot {
  background: var(--primary-teal);
  color: var(--text-light);
  box-shadow: 0 0 25px rgba(8, 152, 129, 0.4);
}

.timeline-content {
  padding-top: 12px;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-footer-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================
   IPHONE MOBILE APP MOCKUP & MODERN APP UI
   ========================================== */

.iphone-mockup {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 48px;
  padding: 12px;
  background: #201416; /* deep premium bezel titanium finish */
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 25px 60px -15px rgba(0, 0, 0, 0.8),
    0 0 0 4px #261b1c, /* external metal trim band */
    inset 0 0 12px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition-bounce);
  z-index: 2;
}

.iphone-mockup:hover {
  transform: translateY(-8px) rotate(1.5deg) scale(1.02);
  box-shadow: 
    0 35px 80px -20px rgba(8, 152, 129, 0.35),
    0 0 0 4px #2a1f20;
}

.iphone-screen {
  position: relative;
  width: 100%;
  height: 540px; /* high-fidelity viewport aspect ratio */
  background: #190f10; /* background inside the phone screen */
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Dynamic Island Capsule & Internal Details */
.iphone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.iphone-island-camera {
  width: 7px;
  height: 7px;
  background: radial-gradient(circle at 2px 2px, #1a2238, #070912 60%, #000000);
  border-radius: 50%;
  border: 1.5px solid #141414;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}

.iphone-island-sensor {
  width: 5px;
  height: 5px;
  background: #0d0d0d;
  border-radius: 50%;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.1);
}

.iphone-island-indicator {
  width: 3px;
  height: 3px;
  background-color: #30d158; /* iOS active green light */
  border-radius: 50%;
  box-shadow: 0 0 4px #30d158;
  opacity: 0.85;
}

/* Tactile Side Buttons */
.iphone-button-action,
.iphone-button-vol-up,
.iphone-button-vol-down,
.iphone-button-power {
  position: absolute;
  background: linear-gradient(to bottom, #2b1d1f, #1c1012);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.iphone-button-action {
  left: -3px;
  top: 90px;
  width: 3px;
  height: 18px;
  border-right: none;
  border-radius: 3px 0 0 3px;
}

.iphone-button-vol-up {
  left: -3px;
  top: 130px;
  width: 3px;
  height: 36px;
  border-right: none;
  border-radius: 3px 0 0 3px;
}

.iphone-button-vol-down {
  left: -3px;
  top: 180px;
  width: 3px;
  height: 36px;
  border-right: none;
  border-radius: 3px 0 0 3px;
}

.iphone-button-power {
  right: -3px;
  top: 140px;
  width: 3px;
  height: 52px;
  border-left: none;
  border-radius: 0 3px 3px 0;
}

/* Top Bezel Ear Speaker */
.iphone-speaker-piece {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #11090a;
  border-radius: 2px;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  z-index: 3;
}

/* Glass Screen Glare Reflection */
.iphone-screen-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 30%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
  z-index: 8;
  border-radius: 38px;
}

/* iOS High-fidelity Status Bar */
.iphone-status-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 22px 0 22px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  z-index: 9;
  user-select: none;
}

.iphone-status-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.iphone-status-svg {
  height: 10px;
  width: auto;
  color: var(--text-muted);
  display: inline-block;
  vertical-align: middle;
}

/* Home Indicator Bar */
.iphone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  background: rgba(253, 251, 248, 0.25);
  border-radius: 2px;
  z-index: 10;
}

/* Overwrite chat widget styles inside iPhone mock screen */
.iphone-screen .showcase-chat-interface {
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  height: 100%;
  padding: 42px 14px 22px 14px; /* leave top space for status bar, bottom for home indicator */
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.iphone-screen .showcase-chat-header {
  border-bottom: 1px solid rgba(253, 251, 248, 0.06);
  padding-bottom: 8px;
  margin-bottom: 10px;
  gap: 10px;
}

.iphone-screen .showcase-chat-avatar {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}

.iphone-screen .showcase-chat-status h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  font-family: var(--font-heading);
}

.iphone-screen .showcase-chat-status span {
  font-size: 0.68rem;
}

.iphone-screen .showcase-chat-body {
  gap: 8px;
  margin-bottom: 10px;
}

.iphone-screen .showcase-chat-bubble {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.78rem;
  line-height: 1.4;
  max-width: 85%;
}

.iphone-screen .showcase-chat-suggestions {
  gap: 6px;
  margin-bottom: 10px;
}

.iphone-screen .suggestion-btn {
  padding: 6px 12px;
  font-size: 0.68rem;
  border-radius: 12px;
  letter-spacing: -0.01em;
}

.iphone-screen .showcase-chat-input {
  gap: 8px;
}

.iphone-screen .showcase-chat-input input {
  padding: 10px 16px;
  font-size: 0.78rem;
  border-radius: 24px;
}

.iphone-screen .showcase-chat-input button {
  width: 38px;
  height: 38px;
  font-size: 0.78rem;
}

/* ==========================================
   MODAL POPUP COMPONENT (PREMIUM GLASS)
   ========================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13, 7, 8, 0.7); /* dark overlay */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  background: linear-gradient(135deg, var(--text-light) 0%, rgba(253, 251, 248, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
  padding: 0 4px;
}

.modal-close:hover {
  color: var(--primary-teal);
}

.modal-body {
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.modal-body h4 {
  color: var(--text-light);
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.modal-body p {
  margin-bottom: 16px;
}

/* Contact Form styles inside Modal */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.contact-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

.contact-group input,
.contact-group textarea {
  background: rgba(25, 15, 16, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.contact-group input:focus,
.contact-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 10px rgba(8, 152, 129, 0.15);
}

.contact-form button {
  padding: 14px;
  margin-top: 10px;
  border-radius: 12px;
}