/* ============================================
   INKLINE - Main Stylesheet
   ============================================ */

/* --------------------------------------------
   CSS Variables / Design Tokens
   -------------------------------------------- */
:root {
  /* Brand Colors */
  --forest-dark: #1A2F23;
  --forest: #2D5A3D;
  --forest-light: #3D7A52;
  --sage: #8FBF9A;
  --cream: #FDF8F3;
  --cream-dark: #F5EDE3;
  --gold: #C9A227;
  --gold-light: #E8C84A;
  
  /* Text Colors */
  --text-dark: #1A2F23;
  --text-muted: #5A6B5E;
  --white: #FFFFFF;
  
  /* Accent Colors */
  --blue: #3B82F6;
  --red: #EF4444;
  
  /* Spacing */
  --section-padding: 8rem 2rem;
  --container-max: 1200px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(26, 47, 35, 0.04);
  --shadow-md: 0 4px 20px rgba(26, 47, 35, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 47, 35, 0.1);
  --shadow-xl: 0 20px 40px rgba(26, 47, 35, 0.08), 0 60px 80px rgba(26, 47, 35, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain overlay for texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* --------------------------------------------
   Typography
   -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}

/* --------------------------------------------
   Lucide Icon Base Styles
   -------------------------------------------- */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

/* --------------------------------------------
   Components - Buttons
   -------------------------------------------- */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
}

.btn-ghost:hover {
  background: rgba(45, 90, 61, 0.08);
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(45, 90, 61, 0.25);
}

.btn-primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(45, 90, 61, 0.35);
}

.btn-gold {
  background: var(--gold);
  color: var(--forest-dark);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* --------------------------------------------
   Components - Section Label
   -------------------------------------------- */
.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.section-label.light {
  background: rgba(45, 90, 61, 0.1);
  color: var(--forest);
}

/* --------------------------------------------
   Layout - Container
   -------------------------------------------- */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* --------------------------------------------
   Navigation
   -------------------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 248, 243, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 90, 61, 0.08);
  transition: all var(--transition-normal);
}

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

.nav-logo svg {
  width: 36px;
  height: 44px;
}

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

.nav-logo span {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--forest);
}

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

/* --------------------------------------------
   Hero Section
   -------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(143, 191, 154, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--forest-dark);
  color: var(--sage);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--forest);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-cta .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  border: 3px solid var(--cream);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--cream);
  font-weight: 600;
}

.hero-avatars span:first-child {
  margin-left: 0;
  background: var(--sage);
  color: var(--forest-dark);
}

.hero-avatars span:nth-child(2) {
  background: var(--forest-light);
}

.hero-avatars span:nth-child(3) {
  background: var(--gold);
  color: var(--forest-dark);
}

.hero-proof-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-proof-text strong {
  color: var(--forest-dark);
}

/* Hero Visual / Mockup */
.hero-visual {
  position: relative;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-mockup {
  width: 100%;
  max-width: 650px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.hero-mockup.screenshot {
  background: transparent;
  box-shadow: 
    0 4px 6px rgba(26, 47, 35, 0.04),
    0 20px 40px rgba(26, 47, 35, 0.12),
    0 40px 80px rgba(26, 47, 35, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(26, 47, 35, 0.08);
}

.hero-mockup.screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.mockup-header {
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(26, 47, 35, 0.06);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dots span:first-child { background: #FF6B6B; }
.mockup-dots span:nth-child(2) { background: #FFE066; }
.mockup-dots span:nth-child(3) { background: #69DB7C; }

.mockup-title {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mockup-content {
  padding: 2rem;
  min-height: 400px;
  position: relative;
}

/* Handwriting simulation */
.handwriting-line {
  height: 32px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hw-text {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: var(--forest-dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hw-text .icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  color: var(--text-muted);
}

.handwriting-line:nth-child(1) .hw-text {
  animation: writeIn 1.5s ease-out 1s both;
}

.handwriting-line:nth-child(2) .hw-text {
  animation: writeIn 1.5s ease-out 1.8s both;
}

.handwriting-line:nth-child(3) .hw-text {
  animation: writeIn 1.5s ease-out 2.6s both;
}

/* Detected action cards */
.detected-action {
  position: absolute;
  right: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 20px rgba(26, 47, 35, 0.12);
  border-left: 4px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(20px);
}

.detected-action.task {
  top: 60px;
  border-left-color: var(--forest);
  animation: slideIn 0.5s ease-out 3.5s forwards;
}

.detected-action.event {
  top: 130px;
  border-left-color: var(--blue);
  animation: slideIn 0.5s ease-out 4s forwards;
}

.detected-action.reminder {
  top: 200px;
  border-left-color: var(--gold);
  animation: slideIn 0.5s ease-out 4.5s forwards;
}

.detected-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detected-icon .icon {
  width: 18px;
  height: 18px;
}

.detected-action.task .detected-icon { 
  background: rgba(45, 90, 61, 0.1); 
  color: var(--forest);
}
.detected-action.event .detected-icon { 
  background: rgba(59, 130, 246, 0.1); 
  color: var(--blue);
}
.detected-action.reminder .detected-icon { 
  background: rgba(201, 162, 39, 0.1); 
  color: var(--gold);
}

.detected-text {
  display: flex;
  flex-direction: column;
}

.detected-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.detected-value {
  font-weight: 600;
  color: var(--forest-dark);
}

/* Floating elements */
.float-element {
  position: absolute;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

.float-element .icon {
  width: 28px;
  height: 28px;
}

.float-element.pencil {
  top: 10%;
  right: -20px;
  color: var(--forest);
  animation-delay: 0s;
}

.float-element.calendar {
  bottom: 25%;
  left: -25px;
  color: var(--blue);
  animation-delay: 1s;
}

.float-element.check {
  top: 55%;
  right: -30px;
  color: var(--gold);
  animation-delay: 2s;
}

/* --------------------------------------------
   Problem Section
   -------------------------------------------- */
.problem {
  padding: var(--section-padding);
  background: var(--forest-dark);
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  opacity: 0.03;
}

.problem-header {
  text-align: center;
  margin-bottom: 4rem;
}

.problem h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.problem h2 span {
  color: var(--gold);
}

.problem-subtitle {
  font-size: 1.2rem;
  color: var(--sage);
  max-width: 600px;
  margin: 0 auto;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(143, 191, 154, 0.1);
  border-radius: 20px;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--sage);
}

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

.problem-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(143, 191, 154, 0.08);
  border-radius: 16px;
  border-left: 4px solid var(--red);
  transition: all var(--transition-normal);
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.problem-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.problem-card-header .icon {
  color: var(--sage);
  opacity: 0.7;
}

.problem-card h4 {
  font-size: 1.25rem;
  color: var(--cream);
}

.problem-card p {
  color: var(--sage);
  font-size: 0.95rem;
}

/* --------------------------------------------
   Solution Section
   -------------------------------------------- */
.solution {
  padding: var(--section-padding);
  background: var(--cream);
}

.solution-header {
  text-align: center;
  margin-bottom: 5rem;
}

.solution h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.solution h2 span {
  color: var(--forest);
  font-style: italic;
}

.solution-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.solution-flow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.flow-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  position: relative;
}

.flow-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--forest);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  box-shadow: 0 10px 40px rgba(45, 90, 61, 0.2);
  transition: all var(--transition-normal);
}

.flow-icon .icon {
  width: 44px;
  height: 44px;
  stroke-width: 1.5;
}

.flow-step:hover .flow-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(45, 90, 61, 0.3);
}

.flow-step h4 {
  font-size: 1.5rem;
  color: var(--forest-dark);
  margin-bottom: 0.75rem;
}

.flow-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.flow-arrow {
  padding-top: 2.5rem;
  color: var(--sage);
}

.flow-arrow .icon {
  width: 32px;
  height: 32px;
}

/* --------------------------------------------
   Features Section
   -------------------------------------------- */
.features {
  padding: var(--section-padding);
  background: var(--cream-dark);
}

.features-header {
  text-align: center;
  margin-bottom: 5rem;
}

.features h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

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

.feature-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--forest);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(26, 47, 35, 0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.feature-icon-box .icon {
  width: 28px;
  height: 28px;
}

.feature-card h4 {
  font-size: 1.25rem;
  color: var(--forest-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* UI Showcase */
.ui-showcase {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid rgba(26, 47, 35, 0.08);
}

.ui-showcase-content h3 {
  font-size: 2rem;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.ui-showcase-content > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ui-features-list {
  list-style: none;
}

.ui-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.ui-features-list li .icon {
  width: 18px;
  height: 18px;
  color: var(--forest);
  stroke-width: 3;
}

.ui-showcase-image {
  position: relative;
}

.ui-showcase-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 
    0 4px 6px rgba(26, 47, 35, 0.04),
    0 20px 40px rgba(26, 47, 35, 0.1),
    0 40px 80px rgba(26, 47, 35, 0.06);
  border: 1px solid rgba(26, 47, 35, 0.08);
}

/* --------------------------------------------
   Syllabus Scanner Section
   -------------------------------------------- */
.scanner {
  padding: var(--section-padding);
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.scanner-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.scanner-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.scanner-text h2 span {
  color: var(--gold);
}

.scanner-text > p {
  font-size: 1.15rem;
  color: var(--sage);
  margin-bottom: 2rem;
}

.scanner-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.scanner-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--forest-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h5 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--sage);
  font-size: 0.9rem;
  margin: 0;
}

.scanner-visual {
  position: relative;
}

.scanner-mockup {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.syllabus-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--forest-dark);
}

.syllabus-header .icon {
  color: var(--forest);
}

.syllabus-header h5 {
  font-size: 1rem;
  margin: 0;
}

.syllabus-preview {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.syllabus-line {
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(26, 47, 35, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.syllabus-line:last-child {
  border-bottom: none;
}

.syllabus-line.highlighted {
  background: rgba(201, 162, 39, 0.15);
  margin: 0.25rem -0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: none;
}

.extracted-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.extracted-badge .icon {
  width: 12px;
  height: 12px;
}

/* --------------------------------------------
   Professionals Section
   -------------------------------------------- */
.professionals {
  padding: var(--section-padding);
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.professionals-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.professionals-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
}

.professionals-text h2 span {
  color: var(--forest);
  font-style: italic;
}

.professionals-text > p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.professionals-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.professionals-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.professionals-step .step-number {
  background: var(--forest);
  color: var(--cream);
}

.professionals-step .step-content h5 {
  color: var(--forest-dark);
}

.professionals-step .step-content p {
  color: var(--text-muted);
}

.professionals-visual {
  position: relative;
}

.meeting-mockup {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 
    0 4px 6px rgba(26, 47, 35, 0.04),
    0 20px 40px rgba(26, 47, 35, 0.1),
    0 40px 80px rgba(26, 47, 35, 0.06);
  border: 1px solid rgba(26, 47, 35, 0.08);
}

.meeting-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 47, 35, 0.08);
  color: var(--forest-dark);
}

.meeting-header .icon {
  color: var(--forest);
}

.meeting-header h5 {
  font-size: 1rem;
  margin: 0;
}

.meeting-notes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.meeting-line {
  padding: 0.75rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
}

.meeting-line.detected {
  background: rgba(45, 90, 61, 0.08);
  border-left: 3px solid var(--forest);
}

.note-text {
  flex: 1;
}

.action-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.action-badge .icon {
  width: 12px;
  height: 12px;
}

.action-badge.task-badge {
  background: var(--forest);
  color: var(--cream);
}

.action-badge.event-badge {
  background: var(--blue);
  color: var(--white);
}

.action-badge.reminder-badge {
  background: var(--gold);
  color: var(--forest-dark);
}

/* --------------------------------------------
   Audiences Section (Who It's For)
   -------------------------------------------- */
.audiences {
  padding: var(--section-padding);
  background: var(--cream);
}

.audiences-header {
  text-align: center;
  margin-bottom: 4rem;
}

.audiences h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.audiences-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.audiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.audience-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.audience-card.featured {
  background: var(--forest);
  border-color: var(--gold);
}

.audience-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest-dark);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.audience-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--forest);
}

.audience-card.featured .audience-icon-box {
  background: rgba(253, 248, 243, 0.15);
  color: var(--cream);
}

.audience-icon-box .icon {
  width: 32px;
  height: 32px;
}

.audience-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--forest-dark);
}

.audience-card.featured h3 {
  color: var(--cream);
}

.audience-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.audience-card.featured .audience-desc {
  color: var(--sage);
}

.audience-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(26, 47, 35, 0.06);
}

.audience-card.featured .feature-item {
  color: var(--sage);
  border-bottom-color: rgba(143, 191, 154, 0.15);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item.highlight {
  color: var(--forest-dark);
  font-weight: 500;
}

.audience-card.featured .feature-item.highlight {
  color: var(--cream);
}

.feature-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

.feature-check .icon {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.audience-card.featured .feature-check {
  color: var(--gold);
}

.feature-item.highlight .feature-check {
  color: var(--gold);
}

/* --------------------------------------------
   CTA Section
   -------------------------------------------- */
.cta {
  padding: var(--section-padding);
  background: var(--forest-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(45, 90, 61, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.cta h2 span {
  color: var(--gold);
  font-style: italic;
}

.cta-content > p {
  font-size: 1.15rem;
  color: var(--sage);
  margin-bottom: 2rem;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1rem;
}

.cta-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(143, 191, 154, 0.3);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition-normal);
}

.cta-input::placeholder {
  color: var(--sage);
}

.cta-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.cta-form .btn {
  padding: 1rem 2rem;
  white-space: nowrap;
}

.cta-note {
  font-size: 0.85rem !important;
  color: rgba(143, 191, 154, 0.7) !important;
  margin: 0 !important;
}

/* --------------------------------------------
   Footer
   -------------------------------------------- */
footer {
  padding: 4rem 2rem 2rem;
  background: var(--forest-dark);
  border-top: 1px solid rgba(143, 191, 154, 0.1);
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo svg {
  width: 32px;
  height: 40px;
}

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

.footer-logo span {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
}

.footer-brand p {
  color: var(--sage);
  font-size: 0.9rem;
}

.footer-column h5 {
  color: var(--cream);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

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

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

.footer-column a {
  color: var(--sage);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(143, 191, 154, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--sage);
  font-size: 0.85rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(143, 191, 154, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--forest);
  color: var(--cream);
}

.footer-social a .icon {
  width: 18px;
  height: 18px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes writeIn {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/* --------------------------------------------
   Responsive Styles
   -------------------------------------------- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }

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

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

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

  .ui-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ui-showcase-image {
    order: -1;
  }

  .scanner-content {
    grid-template-columns: 1fr;
  }

  .professionals-content {
    grid-template-columns: 1fr;
  }

  .professionals-visual {
    order: -1;
  }

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

  .audience-card.featured {
    order: -1;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 5rem 1.5rem;
  }

  nav {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .solution-flow {
    flex-direction: column;
    align-items: center;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 1rem 0;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-form .btn {
    width: 100%;
  }
  
  .float-element {
    display: none;
  }
}
