/* EzerEye Landing Page Styles */

:root {
  --primary-color: #3b82f6;
  --secondary-color: #F5A623;
  --accent-color: #7ED321;
  --background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #f0f0f0 100%);
  --card-bg: rgba(255, 255, 255, 0.8);
  --text-primary: #1f2937;
  --text-muted: #6b7280;
  --border-glow: rgba(59, 130, 246, 0.2);
}

.ezereye-landing {
  background: var(--background);
  color: var(--text-primary);
  min-height: 100vh;
  font-family: Georgia, serif;
}

/* Header Styles */
.ezereye-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glow);
  padding: 1rem 0;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circles {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.circle-1 {
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.circle-2 {
  background: var(--secondary-color);
  box-shadow: 0 0 10px var(--secondary-color);
}

.circle-3 {
  background: white;
  border: 2px solid var(--accent-color);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: Georgia, serif;
}

.logo {
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.nav-links .cta-button {
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.nav-links .cta-button:hover {
  color: white;
}

/* Button Styles */
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
  background: rgba(59, 130, 246, 0.9);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.cta-button.primary {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.cta-button.large {
  padding: 1.5rem 4rem;
  font-size: 1.25rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: var(--primary-color);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
}

.hero-background::after {
  content: '';
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background: var(--secondary-color);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.trust-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.2);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  border: 1px solid rgba(245, 166, 35, 0.4);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-family: Georgia, serif;
}

.text-primary {
  color: var(--primary-color);
  text-shadow: 0 0 30px var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
  text-shadow: 0 0 30px var(--secondary-color);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.highlight-primary {
  color: var(--primary-color);
  font-weight: 700;
}

.highlight-secondary {
  color: var(--secondary-color);
  font-weight: 700;
}

.highlight-accent {
  color: var(--accent-color);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.trial-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.star {
  color: var(--secondary-color);
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: rgba(59, 130, 246, 0.02);
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-family: Georgia, serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-glow);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.card-primary {
  border-color: rgba(59, 130, 246, 0.4);
}

.card-primary:hover {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.15);
}

.card-secondary {
  border-color: rgba(245, 166, 35, 0.4);
}

.card-secondary:hover {
  border-color: rgba(245, 166, 35, 0.6);
  box-shadow: 0 10px 25px -5px rgba(245, 166, 35, 0.15);
}

.card-accent {
  border-color: rgba(126, 211, 33, 0.4);
}

.card-accent:hover {
  border-color: rgba(126, 211, 33, 0.6);
  box-shadow: 0 10px 25px -5px rgba(126, 211, 33, 0.15);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px currentColor);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

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

.card-secondary h3 {
  color: var(--secondary-color);
}

.card-accent h3 {
  color: var(--accent-color);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}

.feature-card .highlight {
  font-weight: 700;
  color: inherit;
}

/* Testimonial Section */
.testimonial {
  padding: 4rem 0;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border-glow);
}

.testimonial blockquote {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  quotes: """ """;
}

.testimonial blockquote::before {
  content: open-quote;
}

.testimonial blockquote::after {
  content: close-quote;
}

.testimonial cite {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: normal;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(59, 130, 246, 0.03);
}

.pricing-card {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border-glow);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.pricing-header p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.setup-info {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin-top: 1rem;
  text-transform: uppercase;
}

/* Footer */
.ezereye-footer {
  border-top: 1px solid var(--border-glow);
  background: var(--card-bg);
  padding: 2rem 0;
}

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

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

.footer-content p {
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Section Updates */
.beta-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.cta-button.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
}

.cta-button.secondary:hover {
  background: var(--card-bg);
  color: var(--text-primary);
}

/* New Content Sections */
.content-section {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-divider {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 300;
  font-family: Georgia, serif;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 0 auto 3rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 400;
}

.content-block {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.content-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.content-block strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* What Is Section */
.what-is {
  padding: 4rem 0;
}

.what-is-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.what-is-content {
  text-align: left;
}

.feature-icon-large {
  width: 4rem;
  height: 4rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon-large i {
  width: 2rem;
  height: 2rem;
  color: var(--primary-color);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}

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

.content-text .lead-text {
  color: var(--text-primary);
  font-weight: 500;
}

.commitment-quote {
  background: rgba(59, 130, 246, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
  border-left: 4px solid var(--primary-color);
}

.commitment-quote p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary-color);
}

.what-is-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-mockup {
  background: rgba(59, 130, 246, 0.05);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
}

.phone-frame {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-glow);
}

.app-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-color);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.app-icon i {
  width: 2rem;
  height: 2rem;
  color: white;
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.app-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

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

/* How It Works Section */
.how-it-works {
  padding: 4rem 0;
  background: rgba(59, 130, 246, 0.02);
}

.steps-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step-card-new {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid var(--border-glow);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.step-card-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1);
}

.step-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
  line-height: 1;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0;
  vertical-align: middle;
}

.step-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  vertical-align: middle;
}

.step-icon i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-color);
}

.step-card-new h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.step-card-new p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
}

.step-card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-glow);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.step-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Beta Test Section */
.beta-test {
  padding: 4rem 0;
}

.beta-badge-section {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

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

.beta-benefit-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-glow);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.beta-benefit-card.highlight {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
}

.beta-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1);
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
}

.benefit-icon i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-color);
}

.beta-benefit-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-glow);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.beta-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.benefit-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  font-family: Georgia, serif;
  line-height: 1.3;
}

.benefit-content p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.beta-benefit-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.beta-benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beta-benefit-card li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.beta-benefit-card li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.beta-footer {
  margin-top: 3rem;
  text-align: center;
}

.feedback-section {
  margin-bottom: 2rem;
}

.feedback-section h4 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.beta-cta {
  margin-top: 2rem;
}

.beta-content {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.beta-benefits h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 1rem 0;
  font-family: Georgia, serif;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.benefit-list li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  line-height: 1.6;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-list strong {
  color: var(--text-primary);
  font-weight: 600;
}

.impact-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 1.5rem;
  font-style: italic;
}

/* Who I Am Section */
.who-i-am {
  padding: 4rem 0;
  background: rgba(59, 130, 246, 0.02);
}

.personal-story-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 800px;
  margin: 3rem auto 0;
  border: 1px solid var(--border-glow);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.story-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.story-icon i {
  width: 2rem;
  height: 2rem;
  color: var(--primary-color);
}

.story-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
  line-height: 1.4;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.story-quote {
  background: rgba(59, 130, 246, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.story-quote p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary-color);
}

.personal-story p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.personal-story .lead-text {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.personal-story strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(59, 130, 246, 0.8) 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 300;
  font-family: Georgia, serif;
  color: white;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.final-cta .cta-button.primary {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

.final-cta .cta-button.primary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
}

.cta-actions {
  margin-top: 2rem;
}

/* Content Section Spacing */
.what-is,
.how-it-works,
.beta-test,
.who-i-am,
.final-cta {
  scroll-margin-top: 5rem; /* For anchor links */
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-actions {
    align-items: stretch;
  }
  
  .hero-actions .cta-button {
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card,
  .pricing-card {
    padding: 2rem;
  }
  
  /* New sections mobile */
  .content-section {
    padding: 0 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .what-is-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .what-is-content {
    text-align: center;
  }
  
  .steps-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .steps-grid-new .step-card-new:nth-child(4),
  .steps-grid-new .step-card-new:nth-child(5) {
    max-width: none;
  }
  
  .step-card-new {
    padding: 1.5rem;
  }
  
  .beta-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .beta-benefit-card {
    padding: 1.5rem;
  }
  
  .personal-story-card {
    padding: 2rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
}