/* PostScout Design System */

:root {
  /* Color Palette */
  --primary-teal: #1BA69A;
  --primary-teal-dark: #158d82;
  --accent-coral: #E85D4F;
  --dark-text: #1A1A1A;
  --background-cream: #FAF8F5;
  --white: #FFFFFF;
  --gray-text: #4A4A4A;
  --light-gray-bg: #F5F5F5;
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e0;
  --gray-500: #a0aec0;
  --gray-600: #718096;
  
  /* Shadows - Layered for depth */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-teal: 0 10px 20px rgba(27, 166, 154, 0.15), 0 4px 8px rgba(27, 166, 154, 0.1);
  --shadow-teal-lg: 0 15px 30px rgba(27, 166, 154, 0.2), 0 8px 16px rgba(27, 166, 154, 0.15);
  
  /* Typography */
  --font-main: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--dark-text);
  background-color: var(--background-cream);
  line-height: 1.6;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 56px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 48px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 32px;
}

p {
  margin-bottom: 1rem;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* New animation variants */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.fade-in-rotate {
  opacity: 0;
  transform: rotate(-5deg) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in-rotate.visible {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--accent-coral) 100%);
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 2px 8px rgba(27, 166, 154, 0.4);
}

/* Container and Layout */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 60px 0;
}

/* Header */
header {
  background-color: var(--background-cream);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-text);
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(27, 166, 154, 0.2));
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(27, 166, 154, 0.2));
}

.logo:hover .logo-icon {
  transform: translateY(-2px);
}

.logo:hover .logo-icon svg {
  filter: drop-shadow(0 4px 8px rgba(27, 166, 154, 0.3));
}

.logo:hover .logo-icon img {
  filter: drop-shadow(0 4px 8px rgba(27, 166, 154, 0.3));
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav a {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary-teal);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--dark-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.dropdown {
  position: relative;
}

/* Invisible bridge to connect dropdown trigger to menu */
.dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
  z-index: 1001;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background-color: white;
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 16px 0;
  z-index: 1002;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 24px;
  color: var(--dark-text);
  font-size: 15px;
}

.dropdown-content a:hover {
  background-color: var(--background-cream);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  min-height: 48px;
}

/* All pseudo-elements removed to fix click detection */

.btn-primary {
  background: linear-gradient(135deg, #E85D4F 0%, #D14D3F 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(232, 93, 79, 0.3);
}

/* Shimmer animation removed - was blocking button clicks */

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 93, 79, 0.4);
}

/* Shimmer class no longer needed - effect removed globally */

.btn-secondary {
  background-color: white;
  color: var(--primary-teal);
  border: 2px solid var(--primary-teal);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1BA69A 0%, #158d82 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.btn-teal {
  background: linear-gradient(135deg, #1BA69A 0%, #158d82 100%);
  color: white;
  box-shadow: var(--shadow-teal);
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal-lg);
}

/* Parallax effect */
.parallax {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #FAF8F5 0%, #f0ebe4 50%, #FAF8F5 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(27, 166, 154, 0.15) 0%, rgba(27, 166, 154, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 93, 79, 0.08) 0%, rgba(232, 93, 79, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.industry-hero {
  padding: 70px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left h1 {
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray-text);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 300px;
}

.hero-right {
  position: relative;
}

.industry-hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.postcard-image {
  width: 100%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  transform: rotate(2deg);
  transition: transform 0.3s;
}

.postcard-image:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #158f85 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Industry Stats Section */
.industry-stats {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #158f85 100%);
  padding: 60px 0;
}

.industry-stats .stat-item {
  color: white;
}

.industry-stats .stat-number {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 12px;
  display: block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.industry-stats .stat-description {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

.stat-item {
  color: white;
  transition: transform 0.3s ease;
  cursor: default;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 12px;
  display: block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.stat-description {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.stat-item small {
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Problem Section */
.problem-section {
  text-align: center;
  background: linear-gradient(135deg, #FAF8F5 0%, #f5f0ea 50%, #FAF8F5 100%);
  position: relative;
}

/* Decorative pseudo-elements removed - were too prominent */

.problem-section h2 {
  margin-bottom: 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(27, 166, 154, 0.1);
  border-color: var(--primary-teal);
  background: rgba(255, 255, 255, 0.95);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(27, 166, 154, 0) 0%, rgba(27, 166, 154, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.problem-card:hover::before {
  background: linear-gradient(135deg, var(--primary-teal) 0%, rgba(27, 166, 154, 0.5) 100%);
  opacity: 1;
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-teal);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(27, 166, 154, 0.2));
}

.problem-card:hover .problem-icon {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 4px 8px rgba(27, 166, 154, 0.35));
  color: var(--primary-teal-dark);
}

.problem-card h3 {
  color: var(--dark-text);
  margin-bottom: 16px;
  font-size: 24px;
}

.problem-card p {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.6;
}

/* Solution Section */
.solution-section {
  background: linear-gradient(180deg, white 0%, #fafafa 50%, white 100%);
  text-align: center;
  position: relative;
}

/* Solution section decorative circles removed */

.solution-section h2 {
  margin-bottom: 60px;
}

.comparison-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 44px;
  margin-top: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  flex: 0 0 360px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

/* Make the third card (postcard) wider */
.comparison-card:last-child {
  flex: 0 0 420px;
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  position: relative;
  z-index: 10;
}

/* Add solid white background layer behind postcard card */
.comparison-card:last-child::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: #ffffff;
  border-radius: 16px;
  z-index: -1;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 166, 154, 0.3);
}

/* Removed winner class special styling */

.comparison-image {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  margin-bottom: 20px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Show full postcard in the last card */
.comparison-card:last-child .comparison-image {
  object-fit: contain;
  background: #ffffff;
}

.transformation-image {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  background: white;
}

/* Postcard image should contain full image */
.comparison-card:last-child .transformation-image {
  object-fit: contain;
  background: #ffffff !important;
  height: 240px;
  padding: 12px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Placeholder images for industry pages */
.placeholder-image {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px dashed #ccc;
}

/* Create a solid white box behind the postcard image */
.comparison-card:last-child .transformation-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: -1;
  border-radius: 8px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  text-align: center;
  max-width: 800px;
  margin: 20px auto 40px;
  line-height: 1.6;
}

.card-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-teal);
  margin-bottom: 12px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.card-label::before {
  content: attr(data-number);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary-teal);
  color: white;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Arrow between cards */
.comparison-card:not(:last-child)::after {
  content: '➤';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: var(--primary-teal);
  font-weight: 700;
  z-index: 10;
}

.comparison-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.3;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-card p {
  color: var(--gray-text);
  font-size: 15px;
  margin-bottom: 12px;
}

.comparison-card .card-description {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
  flex-grow: 1;
  text-align: center;
}

.solution-bottom {
  margin-top: 48px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-text);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(to bottom, var(--background-cream) 0%, #f5f0ea 50%, var(--background-cream) 100%);
  position: relative;
}

/* How it works decorative circle removed */

.how-it-works h2 {
  text-align: center;
  margin-bottom: 80px;
  font-size: 48px;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  transition: transform 0.3s ease;
}

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

/* Progress connector line between steps */
.step:not(:last-of-type)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary-teal) 0%, transparent 100%);
  opacity: 0.3;
}

.step:nth-child(even) .step-content {
  order: 2;
}

.step:nth-child(even) .step-visual {
  order: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  text-align: center;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 
    0 10px 25px rgba(27, 166, 154, 0.25),
    0 4px 12px rgba(27, 166, 154, 0.15),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--accent-coral);
  border-radius: 50%;
  border: 3px solid var(--background-cream);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 15px 35px rgba(27, 166, 154, 0.35),
    0 6px 16px rgba(27, 166, 154, 0.2),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.step:hover .step-number::after {
  opacity: 1;
  transform: scale(1);
}

.step-content {
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark-text);
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.step:hover h3 {
  color: var(--primary-teal);
}

.step p {
  color: var(--gray-text);
  font-size: 18px;
  line-height: 1.8;
  max-width: 540px;
}

.step-visual {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  height: 420px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-visual {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

/* Step visual icon styling */
.step-visual svg {
  width: 120px;
  height: 120px;
  stroke: var(--primary-teal);
  stroke-width: 1.5;
  margin-bottom: 20px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.step:hover .step-visual svg {
  transform: scale(1.1);
  opacity: 1;
  stroke: var(--primary-teal-dark);
}

/* Step image styling */
.step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.step-visual-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 12px;
}

.cta-centered {
  text-align: center;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid rgba(27, 166, 154, 0.1);
}

/* Features Section */
.features-section {
  background: radial-gradient(ellipse at top, #FAF8F5 0%, white 50%);
  position: relative;
}

/* Features section decorative circles removed */

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

.features-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.features-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(27, 166, 154, 0.15);
  border-color: var(--primary-teal);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(27, 166, 154, 0.03) 100%);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-coral) 100%);
  opacity: 1;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-teal);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(27, 166, 154, 0.2));
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(27, 166, 154, 0.3));
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

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

/* Social Proof Section */
.social-proof {
  background: linear-gradient(135deg, var(--background-cream) 0%, #f8f4ef 50%, var(--background-cream) 100%);
  position: relative;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(27, 166, 154, 0.07) 0%, rgba(27, 166, 154, 0.03) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Industry Pages - Pain Points */
.pain-points {
  background-color: var(--background-cream);
}

/* Industry Pages - Use Cases */
.use-cases {
  background-color: white;
}

/* Featured Testimonial for Industry Pages */
.testimonial-featured {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, #ffffff 0%, var(--background-cream) 100%);
  border-left: 4px solid var(--primary-teal);
}

.testimonial-featured .testimonial-quote {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
  color: var(--dark-text);
}

.testimonial-featured .testimonial-author {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.testimonial-featured .testimonial-company {
  color: var(--primary-teal);
  font-size: 16px;
  font-weight: 600;
}

.social-proof h2 {
  text-align: center;
  margin-bottom: 60px;
}

.client-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.logo-placeholder {
  width: 140px;
  height: 60px;
  background-color: #E0E0E0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.testimonial-card {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  color: var(--dark-text);
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.testimonial-company {
  color: var(--gray-text);
  font-size: 15px;
}

.bottom-stat {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-teal);
  margin-top: 60px;
}

/* Comparison Table Section */
.comparison-table-section {
  background-color: white;
}

.comparison-table-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.table-wrapper {
  overflow-x: auto;
  padding: 0 0 20px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Header Styles */
.comparison-table thead th {
  padding: 18px 16px;
  text-align: center;
  background: linear-gradient(135deg, #1BA69A 0%, #158d82 100%);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  vertical-align: middle;
}

.comparison-table thead th:first-child {
  background: white;
  border-bottom: 3px solid #e5e7eb;
}

.comparison-table thead .postscout-column {
  background: linear-gradient(135deg, #1BA69A 0%, #15a695 100%);
  position: relative;
}

.comparison-table .header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.recommended-badge {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  animation: badge-pulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
  }
}

.company-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.star-rating {
  display: flex;
  gap: 2px;
  font-size: 18px;
  color: #fbbf24;
  margin-top: 4px;
}

.star-rating .star {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Body Cell Styles */
.comparison-table tbody td {
  padding: 20px 16px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:nth-child(even) td {
  background-color: #fafbfc;
}

.comparison-table tbody tr:hover td {
  background-color: #f3f4f6;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Feature Column */
.feature-column {
  width: 180px;
  min-width: 180px;
}

.feature-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-text);
  text-align: left;
  padding-left: 28px;
}

/* PostScout Column Highlight */
.comparison-table tbody .postscout-column {
  background-color: rgba(27, 166, 154, 0.04);
  border-left: 3px solid var(--primary-teal);
  border-right: 3px solid var(--primary-teal);
}

.comparison-table tbody tr:nth-child(even) .postscout-column {
  background-color: rgba(27, 166, 154, 0.08);
}

.comparison-table tbody tr:hover .postscout-column {
  background-color: rgba(27, 166, 154, 0.12);
}

/* Icon Wrapper Styles */
.icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.2s ease;
}

.icon-wrapper:hover {
  transform: scale(1.08);
}

.check-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.check-icon svg {
  stroke: #10b981;
}

.cross-icon {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.cross-icon svg {
  stroke: #ef4444;
}

.warning-icon {
  background-color: rgba(245, 158, 35, 0.1);
  color: #f59e0b;
}

.warning-icon svg {
  stroke: #f59e0b;
}

/* Cell Content */
.cell-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
}

.cell-check .cell-text {
  color: #059669;
}

.cell-cross .cell-text {
  color: #9ca3af;
}

.cell-warning .cell-text {
  color: #d97706;
}

/* Table Note */
.table-note {
  text-align: center;
  font-size: 15px;
  color: var(--gray-text);
  margin-top: 32px;
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Value Grids */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 16px 12px;
  }
  
  .icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  
  .cell-text {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .comparison-table-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .table-wrapper {
    margin: 0 -20px;
    padding: 0 20px 20px 20px;
  }
  
  .comparison-table thead th {
    font-size: 13px;
    padding: 14px 10px;
    min-width: 100px;
  }
  
  .comparison-table tbody td {
    padding: 16px 10px;
  }
  
  .feature-column {
    width: 140px;
    min-width: 140px;
  }
  
  .feature-name {
    font-size: 13px;
    padding-left: 12px;
  }
  
  .icon-wrapper {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
  }
  
  .icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
  
  .cell-text {
    font-size: 12px;
    line-height: 1.2;
  }
  
  .recommended-badge {
    font-size: 9px;
    padding: 2px 8px;
  }
  
  .company-name {
    font-size: 14px;
  }
  
  .table-note {
    font-size: 14px;
    margin-top: 24px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .comparison-table-section h2 {
    font-size: 24px;
  }
  
  .comparison-table thead th {
    font-size: 12px;
    padding: 12px 8px;
    min-width: 90px;
  }
  
  .comparison-table tbody td {
    padding: 14px 8px;
  }
  
  .feature-column {
    width: 120px;
    min-width: 120px;
  }
  
  .feature-name {
    font-size: 12px;
    padding-left: 10px;
  }
  
  .icon-wrapper {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
  }
  
  .icon-wrapper svg {
    width: 18px;
    height: 18px;
  }
  
  .cell-text {
    font-size: 11px;
  }
  
  .company-name {
    font-size: 13px;
  }
}

/* Tracking Section */
.tracking-section {
  background-color: var(--background-cream);
}

.tracking-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.tracking-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--gray-text);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

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

.tracking-card {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

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

.tracking-icon {
  color: var(--primary-teal);
  transition: transform 0.3s ease;
}

.tracking-card:hover .tracking-icon {
  transform: scale(1.1);
}

.tracking-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.tracking-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--dark-text);
}

.tracking-card p {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.6;
}

.dashboard-visual {
  max-width: 900px;
  margin: 0 auto;
  background-color: #E0E0E0;
  height: 400px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
  background-color: var(--background-cream);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(27, 166, 154, 0.2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
  border-color: var(--primary-teal);
  box-shadow: 0 8px 32px rgba(27, 166, 154, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0;
}

.faq-icon {
  min-width: 24px;
  transition: transform 0.3s ease;
  color: var(--primary-teal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.7;
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 32px 24px 32px;
}

/* Urgency Section */
.urgency-section {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #158f85 100%);
  color: white;
  text-align: center;
}

.urgency-section h1 {
  color: white;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.urgency-subtitle {
  font-size: 24px;
  margin-bottom: 60px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.guarantee-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.badge {
  text-align: center;
}

.badge-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.badge h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: white;
}

.badge p {
  font-size: 16px;
  opacity: 0.9;
}

/* Final CTA Section */
.final-cta {
  background-color: white;
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.final-cta-left h2 {
  margin-bottom: 24px;
}

.final-cta-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: 32px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 40px;
}

.benefits-list li {
  padding: 12px 0;
  font-size: 18px;
  color: var(--dark-text);
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%231BA69A" stroke-width="3"><path d="M20 6L9 17l-5-5"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-form {
  background-color: var(--background-cream);
  padding: 40px;
  border-radius: 16px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: white;
}

.form-group input:hover,
.form-group select:hover {
  border-color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(27, 166, 154, 0.1);
  transform: translateY(-1px);
}

.form-group input:valid,
.form-group select:valid {
  border-color: #10b981;
}

.form-group label {
  transition: color 0.2s ease;
}

.form-group:focus-within label {
  color: var(--primary-teal);
}

/* Footer */
footer {
  background-color: var(--dark-text);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin: 0 16px;
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .hero-buttons {
    max-width: 100%;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 100%;
  }
  
  .hero-right {
    text-align: center;
    margin-top: 0;
  }
  
  .carousel {
    margin: 20px auto 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  body {
    font-size: 16px;
  }
  
  .section {
    padding: 45px 0;
  }
  
  /* Mobile Header */
  .header-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Mobile Navigation */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    gap: 0;
    padding: 80px 0 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  nav.active {
    right: 0;
  }
  
  nav a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    text-align: center;
  }
  
  nav .btn {
    margin: 16px 24px;
    text-align: center;
    width: calc(100% - 48px);
  }
  
  /* Mobile Dropdown */
  .dropdown {
    width: 100%;
  }
  
  .dropdown > a {
    display: block;
    text-align: center;
  }
  
  .dropdown-content {
    position: static;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background-color: var(--background-cream);
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
  }
  
  .dropdown.active .dropdown-content {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
  }
  
  .dropdown-content a {
    padding: 12px 24px 12px 48px;
    font-size: 14px;
  }
  
  /* Mobile Menu Backdrop */
  .mobile-menu-backdrop {
    display: none;
  }
  
  .mobile-menu-backdrop.active {
    display: block;
  }
  
  .hero {
    padding: 50px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .comparison-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .comparison-card {
    flex: 1 1 auto;
    max-width: 100%;
    min-height: auto;
  }
  
  .comparison-card:last-child {
    flex: 1 1 auto;
    max-width: 100%;
  }
  
  .comparison-card:not(:last-child)::after {
    content: '↓';
    right: auto;
    top: auto;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%)  ;
    font-size: 32px;
  }
  
  .transformation-image {
    background: white !important;
  }
  
  .comparison-card {
    background: rgba(255, 255, 255, 0.98) !important;
  }
  
  /* About page mobile styles */
  section[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
  }
  
  section[style*="grid-template-columns: 1fr 1fr"] > div {
    margin-bottom: 20px;
  }
  
  div[style*="flex: 0 0 200px"] {
    flex: 1 1 100% !important;
    margin-bottom: 24px;
  }
  
  div[style*="flex: 1 1 500px"] {
    flex: 1 1 100% !important;
  }
  
  .features-grid,
  .testimonials-grid,
  .guarantee-badges,
  .faq-grid,
  .tracking-grid,
  .footer-grid,
  .value-grid,
  .value-grid-home {
    grid-template-columns: 1fr;
  }
  
  .step {
    grid-template-columns: 1fr;
  }
  
  .step:nth-child(even) .step-content,
  .step:nth-child(even) .step-visual {
    order: unset;
  }
  
  .final-cta-content {
    grid-template-columns: 1fr;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Mobile optimizations for Phase 2/3 features */
  
  /* Reduce backdrop blur for better mobile performance */
  .problem-card,
  .feature-card,
  .comparison-card {
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
  }
  
  .comparison-card.winner {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }
  
  /* Simplify gradient orbs on mobile for performance */
  .problem-section::before,
  .problem-section::after,
  .features-section::before,
  .features-section::after,
  .hero::before,
  .hero::after {
    animation: none;
    opacity: 0.6;
  }
  
  /* Adjust scroll progress bar for mobile */
  .scroll-progress {
    height: 3px;
  }
  
  /* Reduce stat hover effects on mobile (touch devices) */
  .stat-item:hover {
    transform: scale(1.02);
  }
  
  .stat-item:hover .stat-number {
    transform: scale(1.05);
  }
  
  /* Simplify card animations on mobile */
  .problem-card:hover,
  .feature-card:hover,
  .tracking-card:hover {
    transform: translateY(-4px);
  }
  
  /* Make form inputs larger for mobile */
  .form-group input,
  .form-group select {
    padding: 16px;
    font-size: 16px;
  }
  
  /* Reduce animation distances on mobile */
  .fade-in {
    transform: translateY(20px) scale(0.97);
  }
  
  .fade-in-left,
  .fade-in-right {
    transform: translateX(-20px) scale(0.97);
  }
  
  .fade-in-right {
    transform: translateX(20px) scale(0.97);
  }
  
  /* How It Works - Mobile */
  .step {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .step:nth-child(even) .step-content {
    order: 1;
  }
  
  .step:nth-child(even) .step-visual {
    order: 2;
  }
  
  .step:not(:last-of-type)::after {
    left: 32px;
    bottom: -30px;
    height: 30px;
  }
  
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  
  .step h3 {
    font-size: 28px;
  }
  
  .step p {
    font-size: 16px;
  }
  
  .step-visual {
    height: 280px;
  }
  
  .step-visual svg {
    width: 80px;
    height: 80px;
  }
  
  .step-visual-label {
    font-size: 16px;
  }
  
  .how-it-works h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

/* Carousel Styles */
.carousel {
  position: relative;
  max-width: 100%;
  margin: 60px auto;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-placeholder {
  width: 90%;
  max-width: 800px;
  height: 450px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border: 2px solid rgba(27, 166, 154, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}

.carousel-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

.carousel-placeholder small {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-text);
  margin-top: 8px;
}

.carousel-image {
  width: 90%;
  max-width: 800px;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--dark-text);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
  background-color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--primary-teal);
  width: 32px;
  border-radius: 6px;
}

.dot:hover {
  background-color: var(--primary-teal);
  opacity: 0.7;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Mobile Menu Styles */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
  display: block;
  opacity: 1;
}

/* Sticky CTA Button */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .btn {
  box-shadow: 0 8px 24px rgba(232, 93, 79, 0.4);
  padding: 18px 36px;
  font-size: 18px;
}

.sticky-cta .btn:hover {
  box-shadow: 0 12px 32px rgba(232, 93, 79, 0.5);
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-delay-1 {
  transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
  transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
  transition-delay: 0.3s;
}

/* SVG Icon Styles */
.problem-icon,
.feature-icon,
.tracking-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.problem-icon svg,
.feature-icon svg,
.tracking-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 2;
}

.problem-icon {
  color: var(--accent-coral);
}

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

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

/* Enhanced Card Hover Effects */
.feature-card,
.tracking-card,
.testimonial-card {
  transition: all 0.3s ease;
}

.feature-card:hover,
.tracking-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Dropdown Menu Bridge Fix */
.dropdown {
  position: relative;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
  z-index: 1001;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background-color: white;
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 16px 0;
  z-index: 1002;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Loading State for Form */
.form-group input:disabled,
.form-group select:disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success/Error Messages */
.form-message {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 2px solid #ef4444;
}

/* Success Banner (Safari-compatible inline message) */
.form-success-banner {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 32px 28px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.4), 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: slideInDown 0.5s ease-out, pulse 0.6s ease-out;
  transition: opacity 0.3s ease;
  border: 3px solid #34d399;
}

.success-banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.success-banner-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success-banner-icon svg {
  width: 36px;
  height: 36px;
  stroke: #10b981;
}

.success-banner-text {
  flex: 1;
}

.success-banner-text strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.success-banner-text p {
  font-size: 18px;
  margin: 0;
  opacity: 1;
  line-height: 1.5;
  font-weight: 500;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.4), 0 0 0 3px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.6), 0 0 0 6px rgba(16, 185, 129, 0.3);
  }
}

/* Mobile adjustments for success banner */
@media (max-width: 768px) {
  .form-success-banner {
    padding: 28px 24px;
    margin-bottom: 28px;
  }
  
  .success-banner-content {
    gap: 16px;
  }
  
  .success-banner-icon {
    width: 56px;
    height: 56px;
  }
  
  .success-banner-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .success-banner-text strong {
    font-size: 24px;
    margin-bottom: 6px;
  }
  
  .success-banner-text p {
    font-size: 17px;
  }
}

/* Success Modal Overlay */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
}

.success-modal-overlay.show {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.success-modal {
  background: white;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10001;
}

.success-modal-overlay.show .success-modal {
  transform: scale(1);
}

/* Mobile-specific modal styles */
@media (max-width: 768px) {
  .success-modal {
    padding: 32px 24px;
    width: 85%;
    max-width: 340px;
  }
  
  .success-modal-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
  
  .success-modal-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .success-modal h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .success-modal p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .success-modal-close {
    padding: 12px 28px;
    font-size: 15px;
  }
}

.success-modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-teal), #16a085);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: successPulse 0.6s ease;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.success-modal-icon svg {
  width: 48px;
  height: 48px;
  stroke: white;
  stroke-width: 3;
}

.success-modal h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.success-modal p {
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: 32px;
  line-height: 1.6;
}

.success-modal-close {
  background: var(--primary-teal);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-modal-close:hover {
  background: var(--primary-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 166, 154, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Note: .fade-in class is defined earlier in the file (line 72) with transition-based animation */

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .carousel-container {
    height: 350px;
  }
  
  .carousel-placeholder {
    height: 300px;
    font-size: 20px;
  }
  
  .carousel-image {
    height: 300px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  .sticky-cta {
    bottom: 20px;
    right: 20px;
  }
  
  .sticky-cta .btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}

/* ===================================
   NEW ENHANCEMENTS - Visual Improvements
   =================================== */

/* Industry Icons Section */
.industry-icons-section {
  background: linear-gradient(135deg, #FAF8F5 0%, #ffffff 50%, #FAF8F5 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.industry-icons-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 166, 154, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.industry-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--gray-text);
  max-width: 700px;
  margin: 0 auto 60px;
}

.industry-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.industry-item {
  text-align: center;
  transition: transform 0.3s ease;
  width: 200px;
  flex-shrink: 0;
}

.industry-item:hover {
  transform: translateY(-8px);
}

.industry-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(27, 166, 154, 0.1) 0%, rgba(232, 93, 79, 0.1) 100%);
  border-radius: 50%;
  color: var(--primary-teal);
  transition: all 0.3s ease;
  position: relative;
}

.industry-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-teal), var(--accent-coral));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.industry-item:hover .industry-icon {
  background: white;
  box-shadow: 0 10px 30px rgba(27, 166, 154, 0.2);
  transform: scale(1.1);
}

.industry-item:hover .industry-icon::after {
  opacity: 1;
}

.industry-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0;
}

/* Section Eyebrow */
.section-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 16px;
}

/* Value Proposition Section */
.value-prop-section {
  background: 
    radial-gradient(circle at 20% 30%, rgba(27, 166, 154, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(232, 93, 79, 0.08) 0%, transparent 40%),
    linear-gradient(to bottom, #ffffff 0%, #FAF8F5 100%);
  padding: 80px 0;
  position: relative;
}



.value-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 48px 36px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--accent-coral) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.value-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  border-radius: 20px;
  color: white;
  box-shadow: 0 10px 30px rgba(27, 166, 154, 0.3);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: rotateY(180deg);
  box-shadow: 0 15px 40px rgba(27, 166, 154, 0.4);
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark-text);
  font-weight: 700;
}

.value-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-text);
  margin: 0;
}

/* Mockup Showcase Section */
.mockup-showcase-section {
  background: linear-gradient(to bottom, #FAF8F5 0%, #ffffff 50%, #FAF8F5 100%);
  padding: 80px 0;
}

.mockup-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--gray-text);
  max-width: 700px;
  margin: 0 auto 60px;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin-top: 60px;
}

.mockup-card {
  text-align: center;
}

.mockup-frame {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.mockup-card:hover .mockup-frame {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.mockup-illustration {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px dashed rgba(27, 166, 154, 0.2);
}

.mockup-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-teal);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.illustration-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mockup-example-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.house-outline svg {
  width: 180px;
  height: auto;
  stroke: var(--primary-teal);
  opacity: 0.6;
}

.transform-label {
  background: var(--accent-coral);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.qr-placeholder {
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

.qr-placeholder svg {
  color: var(--dark-text);
}

.text-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 140px;
}

.text-lines .line {
  height: 8px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.text-lines .line.short {
  width: 60%;
}

.browser-bar {
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}

.browser-bar .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.page-content {
  width: 100%;
  margin-top: 16px;
}

.header-block {
  height: 40px;
  background: rgba(27, 166, 154, 0.2);
  border-radius: 8px;
  margin-bottom: 16px;
}

.content-blocks {
  display: flex;
  gap: 12px;
}

.content-blocks .block {
  flex: 1;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.mockup-description {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
}

.mockup-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

/* Early Adopter Benefits */
.early-adopter-benefits {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 48px;
  border-radius: 20px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  border: 2px solid rgba(27, 166, 154, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  position: relative;
  overflow: hidden;
}

.early-adopter-benefits::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 166, 154, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.early-adopter-benefits h3 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--dark-text);
  letter-spacing: -0.8px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}

.early-adopter-benefits h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-coral) 100%);
  border-radius: 2px;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(27, 166, 154, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(27, 166, 154, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(27, 166, 154, 0.15);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  border-radius: 16px;
  color: white;
  box-shadow: 0 4px 16px rgba(27, 166, 154, 0.3);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(27, 166, 154, 0.45);
}

.benefit-item p {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.5;
  letter-spacing: -0.2px;
  flex: 1;
}

/* Form Trust Badges */
.form-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(27, 166, 154, 0.1);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-teal);
}

.trust-badge svg {
  color: var(--primary-teal);
}

/* Mobile Responsive - New Sections */
/* Tablet breakpoint for benefits grid */
@media (max-width: 1024px) {
  .benefits-grid {
    gap: 24px;
  }
  
  .early-adopter-benefits {
    padding: 40px 32px;
    max-width: 100%;
  }
  
  .benefit-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .mockup-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefits-grid {
    gap: 20px;
  }
  
  .early-adopter-benefits {
    padding: 32px 20px;
  }
  
  .early-adopter-benefits h3 {
    font-size: 26px;
    margin-bottom: 36px;
    padding-bottom: 16px;
  }
  
  .benefit-item {
    padding: 18px;
    gap: 20px;
  }
  
  .benefit-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  
  .benefit-item p {
    font-size: 17px;
    line-height: 1.5;
  }
  
  .form-trust-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-badge {
    justify-content: center;
  }
  
  .faq-question {
    font-size: 18px;
    padding: 20px 24px;
  }
  
  .faq-answer {
    font-size: 15px;
    padding: 0 24px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
  }
}

/* About Page Hero Section */
.about-hero {
  background: linear-gradient(135deg, #0d9488 0%, var(--primary-teal) 50%, #14b8a6 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(232, 93, 79, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-content {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-hero-content h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 28px 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
}

.about-hero-content .hero-subtitle {
  font-size: 21px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

.hero-divider {
  display: none;
}

/* About Mission Section */
.about-mission {
  padding-top: 100px;
  padding-bottom: 80px;
}

.mission-text {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

/* Founder Cards - About Page */
.founder-card {
  background: white;
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid #f0f0f0;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  overflow: hidden;
}

.founder-avatar-image {
  padding: 0;
  background: none !important;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-title h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px 0;
}

.founder-role {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.founder-bio {
  line-height: 1.8;
}

.founder-bio p {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

.founder-quote {
  background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-teal);
  margin-top: 32px;
  position: relative;
}

.founder-quote svg {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--primary-teal);
}

.founder-quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
  padding-left: 40px;
  line-height: 1.7;
}

/* Mobile styles for about page and founder cards */
@media (max-width: 768px) {
  .about-hero {
    padding: 70px 0 60px;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: 6px 16px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
  
  .about-hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .about-hero-content .hero-subtitle {
    font-size: 17px;
    line-height: 1.55;
  }
  
  .about-mission {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
  }
  
  .about-mission h2 {
    text-align: center;
  }
  
  .mission-text {
    font-size: 16px;
  }
  
  .founder-card {
    padding: 32px 24px;
  }
  
  .founder-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .founder-avatar {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
  
  .founder-title h3 {
    font-size: 24px;
  }
  
  .founder-role {
    font-size: 16px;
  }
  
  .founder-bio p {
    font-size: 15px;
  }
  
  .founder-quote {
    padding: 24px;
  }
  
  .founder-quote p {
    font-size: 16px;
    padding-left: 32px;
  }
}
