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

:root {
  --primary: #1e1e1e;
  --primary-dark: #111111;
  --primary-light: #3a3a3a;
  --secondary: #111111;
  --accent: #ea580c;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.btn-large {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

.btn-cta {
  background: var(--accent);
  color: var(--white);
}

.btn-cta:hover {
  background: #c2410c;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-100);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 40px;
}

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

.nav-links a {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

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

.nav-links .btn {
  padding: 10px 20px;
}

.nav-links .btn-primary,
.nav-links .btn-primary:hover {
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--gray-200);
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 0;
}

.mobile-menu .btn-primary {
  color: var(--white);
}

/* ================================================
   DREW CONVERSATION SYSTEM
   Character + speech bubble layouts
   ================================================ */

.drew-conversation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.drew-conversation.drew-right {
  grid-template-columns: 1fr auto;
}

.drew-character {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.drew-character img {
  height: 340px;
  width: auto;
  filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.1));
}

.speech-bubble {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 48px 56px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.speech-bubble::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  transform: rotate(45deg);
}

.drew-left .speech-bubble::before {
  left: -12px;
  top: 50%;
  margin-top: -10px;
  border-right: none;
  border-top: none;
}

.drew-right .speech-bubble::before {
  right: -12px;
  top: 50%;
  margin-top: -10px;
  border-left: none;
  border-bottom: none;
}

.speech-bubble p {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
}

blockquote.speech-bubble {
  margin: 0;
  border-left: none;
}

.speech-bubble blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

.speech-bubble h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.speech-bubble-dark {
  background: var(--gray-800);
  border-color: var(--gray-700);
}

.speech-bubble-dark::before {
  background: var(--gray-800);
  border-color: var(--gray-700);
}

.speech-bubble-dark h2 {
  color: var(--white);
}

.speech-bubble-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-note-dark {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
  padding: 140px 0 48px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero .container {
  display: flex;
  flex-direction: column;
}

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

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.hero-tagline {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-left .dashboard-preview {
  max-width: 100%;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero-cta .btn-large {
  width: auto;
  padding: 16px 40px;
}

.cta-note {
  font-size: 14px;
  color: var(--gray-500);
}

/* Dashboard Preview */
.dashboard-preview {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.preview-header {
  background: var(--gray-100);
  padding: 8px 12px;
  border-bottom: 1px solid var(--gray-200);
}

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

.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}

.preview-dots span:first-child { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #f59e0b; }
.preview-dots span:nth-child(3) { background: #22c55e; }

.preview-content {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 300px;
}

.preview-sidebar {
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  padding: 12px 0;
}

.sidebar-logo {
  padding: 0 12px 12px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 8px;
}

.sidebar-logo img {
  height: 24px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--gray-600);
  cursor: pointer;
}

.sidebar-item.active {
  color: var(--accent);
  background: #fff7ed;
  border-left: 2px solid var(--accent);
}

.sidebar-icon-shape {
  width: 14px;
  height: 14px;
  background: currentColor;
  border-radius: 3px;
  opacity: 0.6;
}

.preview-main {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--gray-50);
}

.preview-main-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.greeting {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}

.greeting-sub {
  font-size: 10px;
  color: var(--gray-500);
}

.new-job-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.stats-row {
  display: flex;
  gap: 8px;
}

.stat-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.stat-value.orange {
  color: var(--accent);
}

.stat-value.green {
  color: #16a34a;
}

.stat-label-small {
  font-size: 7px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-800);
}

.view-all {
  color: var(--accent);
  font-weight: 500;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.date-badge {
  background: #fff7ed;
  border-left: 3px solid var(--accent);
  padding: 6px 10px;
  text-align: center;
  border-radius: 4px;
}

.date-month {
  display: block;
  font-size: 8px;
  color: var(--gray-500);
  text-transform: uppercase;
}

.date-day {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.schedule-details {
  flex: 1;
}

.schedule-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
}

.schedule-customer {
  font-size: 10px;
  color: var(--gray-500);
}

/* ================================================
   BENEFITS SECTION — Drew's daily wins
   ================================================ */

.what-we-do {
  padding: 60px 0;
  background: var(--gray-50);
}

.what-we-do .drew-conversation {
  max-width: 1000px;
  margin: 0 auto;
}

.what-we-do .drew-character img {
  height: 380px;
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.benefits-list li {
  font-size: 17px;
  color: var(--gray-700);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.benefits-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ================================================
   FEATURES SECTION
   ================================================ */

.features {
  padding: 72px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
}

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

.feature-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ================================================
   HOW IT WORKS
   ================================================ */

.how-it-works {
  padding: 72px 0;
  background: var(--gray-50);
}

.how-it-works .drew-conversation {
  max-width: 900px;
  margin: 0 auto 36px;
}

.how-it-works .drew-character img {
  height: 320px;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--gray-600);
}

.step-arrow {
  font-size: 32px;
  color: var(--gray-300);
  padding-top: 48px;
}

.how-it-works-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
}

.how-it-works-bottom .speech-bubble {
  max-width: 320px;
  flex-shrink: 0;
}

.how-it-works-bottom .speech-bubble::before {
  right: -12px;
  left: auto;
  top: 50%;
  margin-top: -10px;
  border-left: none;
  border-bottom: none;
  border-right: 2px solid var(--gray-200);
  border-top: 2px solid var(--gray-200);
}

.how-it-works-image {
  text-align: center;
}

.how-it-works-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.1));
}

/* ================================================
   PRICING SECTION
   ================================================ */

.pricing {
  padding: 72px 0;
  background: var(--white);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-drew {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}

.pricing-drew-caption {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  padding: 28px 32px;
}

.pricing-drew-caption::before {
  left: 50%;
  margin-left: -10px;
  top: -12px;
  border: none;
  border-left: 2px solid var(--gray-200);
  border-top: 2px solid var(--gray-200);
  background: var(--white);
}

.pricing-card {
  flex: 0 1 380px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

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

.pricing-card.featured:hover {
  transform: translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price .amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
}

.price .period {
  font-size: 16px;
  color: var(--gray-500);
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray-500);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-size: 15px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
  margin-right: 12px;
}

.pricing-guarantee {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
}

/* ================================================
   DREW CHARACTER WIDE
   ================================================ */

.drew-character-wide img {
  height: auto !important;
  max-width: 420px;
  width: 100%;
}

/* ================================================
   FAQ SECTION
   ================================================ */

.faq-section {
  padding: 60px 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--gray-200);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ================================================
   CTA SECTION — Drew's honest recommendation
   ================================================ */

.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-section .drew-conversation {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-section .drew-character img {
  height: 360px;
}

.cta-section .speech-bubble-dark .btn {
  margin-top: 24px;
}

/* ================================================
   LEGAL CONTENT PAGES
   ================================================ */

.legal-content {
  padding: 120px 0 80px;
  min-height: calc(100vh - 300px);
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 32px;
}

.plain-english-summary {
  background: var(--gray-50);
  border-left: 4px solid var(--accent);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.plain-english-summary h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  margin-top: 0;
}

.plain-english-summary p {
  margin-bottom: 0;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: var(--gray-900);
  padding: 48px 0 24px;
  color: var(--gray-400);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
  .drew-conversation {
    gap: 16px;
  }

  .drew-character img {
    height: 260px !important;
  }

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

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-split {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 120px 0 24px;
  }

  .hero .container {
    gap: 16px;
  }

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

  .hero-content h1 {
    font-size: 32px;
  }

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

  .hero-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .how-it-works-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .how-it-works-bottom .speech-bubble {
    max-width: 100%;
  }

  .drew-conversation {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .drew-conversation.drew-right {
    grid-template-columns: 1fr;
  }

  .drew-character {
    justify-content: center;
    order: -1;
  }

  .drew-character img {
    height: 200px !important;
  }

  .drew-character-wide {
    order: -1;
  }

  .drew-character-wide img {
    max-width: 300px;
  }

  .speech-bubble {
    padding: 28px 24px;
  }

  .speech-bubble::before {
    left: 50% !important;
    right: auto !important;
    top: -12px !important;
    margin-top: 0 !important;
    margin-left: -10px;
    border: none !important;
    border-left: 2px solid var(--gray-200) !important;
    border-top: 2px solid var(--gray-200) !important;
    background: var(--white);
    transform: rotate(45deg);
  }

  .how-it-works-bottom .speech-bubble::before {
    top: auto !important;
    bottom: -12px !important;
    border-left: none !important;
    border-top: none !important;
    border-right: 2px solid var(--gray-200) !important;
    border-bottom: 2px solid var(--gray-200) !important;
    background: var(--white);
  }

  .speech-bubble-dark::before {
    background: var(--gray-800) !important;
    border-color: var(--gray-700) !important;
  }

  .speech-bubble p {
    font-size: 15px;
    line-height: 1.7;
  }

  .speech-bubble h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .benefits-list li {
    font-size: 15px;
  }

  .what-we-do {
    padding: 36px 0;
  }

  .features {
    padding: 36px 0;
  }

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

  .feature-card {
    padding: 20px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 15px;
  }

  .how-it-works {
    padding: 36px 0;
  }

  .how-it-works .drew-conversation {
    margin-bottom: 20px;
  }

  .steps {
    flex-direction: column;
    gap: 8px;
  }

  .step {
    padding: 20px 16px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .step h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .step p {
    font-size: 14px;
  }

  .step-arrow {
    display: none;
  }

  .how-it-works-image {
    margin-top: 20px;
  }

  .how-it-works-image img {
    max-width: 260px;
  }

  .pricing {
    padding: 36px 0;
  }

  .pricing-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 32px 24px;
  }

  .pricing-drew {
    order: -1;
  }

  .drew-character-wide img {
    max-width: 240px;
  }

  .faq-section {
    padding: 36px 0;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item {
    padding: 18px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 14px;
  }

  .cta-section {
    padding: 40px 0;
  }

  .cta-section .speech-bubble-dark .btn {
    margin-top: 20px;
  }

  .btn-large {
    width: 100%;
    text-align: center;
  }

  .hero-cta .btn-large {
    width: 100%;
  }

  .cta-note-dark {
    font-size: 13px;
    margin-top: 12px;
  }

  .footer {
    padding: 28px 0 16px;
  }

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

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-bottom {
    padding-top: 16px;
  }

  .preview-content {
    grid-template-columns: 80px 1fr;
    min-height: 200px;
  }

  .sidebar-logo img {
    height: 16px;
  }

  .sidebar-item {
    font-size: 8px;
    padding: 5px 8px;
    gap: 4px;
  }

  .sidebar-icon-shape {
    width: 10px;
    height: 10px;
  }

  .greeting {
    font-size: 13px;
  }

  .greeting-sub {
    font-size: 8px;
  }

  .new-job-btn {
    font-size: 8px;
    padding: 4px 8px;
  }

  .stat-value {
    font-size: 13px;
  }

  .stat-label-small {
    font-size: 6px;
  }

  .stats-row {
    gap: 4px;
  }

  .stat-card {
    padding: 6px;
  }

  .schedule-header {
    font-size: 8px;
  }

  .schedule-title {
    font-size: 9px;
  }

  .schedule-customer {
    font-size: 7px;
  }

  .date-badge {
    padding: 3px 5px;
  }

  .date-month {
    font-size: 7px;
  }

  .date-day {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 20px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-tagline {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .drew-conversation {
    gap: 12px;
  }

  .drew-character img {
    height: 170px !important;
  }

  .drew-character-wide img {
    max-width: 240px;
  }

  .speech-bubble {
    padding: 22px 20px;
  }

  .speech-bubble p {
    font-size: 14px;
    line-height: 1.65;
  }

  .speech-bubble h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 14px;
  }

  .benefits-list li {
    font-size: 14px;
    padding: 10px 0;
  }

  .what-we-do {
    padding: 28px 0;
  }

  .features {
    padding: 28px 0;
  }

  .how-it-works {
    padding: 28px 0;
  }

  .pricing {
    padding: 28px 0;
  }

  .faq-section {
    padding: 28px 0;
  }

  .cta-section {
    padding: 32px 0;
  }

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

  .pricing-card {
    padding: 24px 18px;
  }

  .price .amount {
    font-size: 40px;
  }

  .preview-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .preview-sidebar {
    display: none;
  }

  .feature-card {
    padding: 18px;
  }

  .faq-item {
    padding: 16px;
  }

  .step {
    padding: 16px 14px;
  }
}
