/* EIN Works - Custom Styles */
/* Color Palette: White, Dark Grey, Leaf Green, Earth Tone Browns */

:root {
  /* Primary Colors */
  --white: #ffffff;
  --dark-grey: #2d2d2d;
  --charcoal: #1a1a1a;

  /* Accent Colors */
  --leaf-green: #4a7c59;
  --leaf-green-light: #6b9b7a;
  --leaf-green-dark: #3a6347;

  /* Earth Tones */
  --earth-brown: #8b7355;
  --earth-brown-light: #a89078;
  --earth-tan: #c9b99a;
  --earth-cream: #f5f1e8;

  /* Functional */
  --text-primary: #2d2d2d;
  --text-secondary: #5a5a5a;
  --text-light: #8a8a8a;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);

  /* Spacing */
  --section-padding: 100px;
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-grey);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--leaf-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--leaf-green-dark);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--leaf-green), var(--leaf-green-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--dark-grey);
  border: 2px solid var(--dark-grey);
}

.btn-secondary:hover {
  background: var(--dark-grey);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark-grey);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow-color);
  padding: 15px 0;
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar.scrolled .logo {
  color: var(--dark-grey);
}

.logo span {
  color: var(--leaf-green);
}

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

.nav-links a {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--dark-grey);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--leaf-green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s ease;
}

.navbar.scrolled .mobile-toggle span {
  background: var(--dark-grey);
}

/* Hero Section with Parallax */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-grey) 100%);
}

.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.parallax-layer-1 {
  opacity: 0.1;
  transform: translateZ(-2px) scale(3);
}

.parallax-layer-2 {
  opacity: 0.15;
  transform: translateZ(-1px) scale(2);
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--leaf-green);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--earth-brown);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -50px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--leaf-green-light);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 50%;
  left: 10%;
  animation: rotate 30s linear infinite;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(74, 124, 89, 0.2);
  border: 1px solid rgba(74, 124, 89, 0.3);
  border-radius: 50px;
  color: var(--leaf-green-light);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--leaf-green-light), var(--leaf-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--leaf-green-light);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 8px;
}

/* Creative Image Masking */
.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  z-index: 1;
}

.masked-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.masked-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mask-blob {
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}

.mask-circle {
  clip-path: circle(45% at 50% 50%);
}

.mask-diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.mask-hexagon {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.mask-organic {
  clip-path: path('M 0.5,0 C 0.7,0 1,0.3 1,0.5 C 1,0.7 0.7,1 0.5,1 C 0.3,1 0,0.7 0,0.5 C 0,0.3 0.3,0 0.5,0');
}

/* Image overlay effects */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.3), rgba(139, 115, 85, 0.2));
  z-index: 1;
}

/* Section Styles */
section {
  padding: var(--section-padding) 0;
}

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

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(74, 124, 89, 0.1);
  color: var(--leaf-green);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
}

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

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

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--leaf-green-light), var(--leaf-green));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  fill: none;
}

.feature-card h4 {
  margin-bottom: 12px;
  color: var(--dark-grey);
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* How It Works / Journey Section */
.journey {
  background: var(--white);
  position: relative;
}

.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--leaf-green), var(--earth-brown));
  border-radius: 2px;
}

.journey-item {
  position: relative;
  padding: 30px 0;
  display: flex;
  align-items: center;
}

.journey-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.journey-item:nth-child(odd) .journey-content {
  text-align: right;
  padding-right: 60px;
  padding-left: 0;
}

.journey-item:nth-child(even) .journey-content {
  padding-left: 60px;
}

.journey-content {
  flex: 1;
}

.journey-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 4px solid var(--leaf-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--leaf-green);
  font-size: 1.25rem;
  z-index: 1;
}

.journey-phase {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(74, 124, 89, 0.1);
  color: var(--leaf-green);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.journey-item h4 {
  margin-bottom: 8px;
}

.journey-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Parallax Section */
.parallax-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  height: 200%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.85), rgba(74, 124, 89, 0.7));
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.parallax-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.parallax-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 30px;
}

/* Pricing Section */
.pricing {
  background: linear-gradient(180deg, var(--earth-cream) 0%, var(--white) 100%);
}

.pricing-card {
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.pricing-header {
  background: linear-gradient(135deg, var(--dark-grey), var(--charcoal));
  padding: 50px 40px;
  text-align: center;
  color: var(--white);
}

.pricing-header h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

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

.price-currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--leaf-green-light);
}

.price-amount {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.price-period {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-body {
  padding: 40px;
}

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

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.pricing-features svg {
  width: 24px;
  height: 24px;
  stroke: var(--leaf-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features span {
  color: var(--text-secondary);
}

.pricing-cta {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
}

.guarantee {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Partners Section */
.partners {
  background: var(--dark-grey);
  color: var(--white);
}

.partners .section-header h2,
.partners .section-header p {
  color: var(--white);
}

.partners .section-badge {
  background: rgba(74, 124, 89, 0.3);
  color: var(--leaf-green-light);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.partner-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
}

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

.partner-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--leaf-green), var(--leaf-green-dark));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partner-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.partner-card h4 {
  color: var(--white);
  margin-bottom: 10px;
}

.partner-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Verification Tool Section */
.verification {
  background: var(--earth-cream);
}

.verification-tool {
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.verification-form {
  display: grid;
  gap: 25px;
}

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

.form-group label {
  font-weight: 600;
  color: var(--dark-grey);
  font-size: 0.95rem;
}

.form-group input {
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--leaf-green);
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.verification-results {
  margin-top: 30px;
  padding: 30px;
  background: var(--earth-cream);
  border-radius: 15px;
  display: none;
}

.verification-results.show {
  display: block;
}

.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.result-label {
  font-weight: 500;
  color: var(--dark-grey);
}

.result-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.result-status.match {
  color: var(--leaf-green);
}

.result-status.mismatch {
  color: #e74c3c;
}

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--earth-cream);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark-grey);
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h5 {
  margin-bottom: 4px;
  color: var(--dark-grey);
}

.testimonial-info span {
  color: var(--text-light);
  font-size: 0.875rem;
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-grey);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--leaf-green);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--leaf-green), var(--leaf-green-dark));
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--leaf-green-dark);
}

.cta-section .btn-primary:hover {
  background: var(--earth-cream);
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--leaf-green-light);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--leaf-green);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Dashboard Styles (for logged-in users) */
.dashboard {
  padding-top: 100px;
}

.dashboard-header {
  background: linear-gradient(135deg, var(--dark-grey), var(--charcoal));
  padding: 60px 0;
  color: var(--white);
}

.dashboard-header h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.dashboard-header p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.progress-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.progress-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
}

.progress-card h4 {
  color: var(--leaf-green-light);
  font-size: 2rem;
  margin-bottom: 5px;
}

.progress-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.dashboard-content {
  padding: 50px 0;
}

.step-cards {
  display: grid;
  gap: 25px;
}

.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--earth-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--leaf-green);
}

.step-card.completed .step-number {
  background: var(--leaf-green);
  color: var(--white);
}

.step-card.active .step-number {
  background: linear-gradient(135deg, var(--leaf-green), var(--leaf-green-dark));
  color: var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(74, 124, 89, 0); }
}

.step-info h4 {
  margin-bottom: 8px;
}

.step-info p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.step-action .btn {
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-image {
    display: none;
  }

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

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

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
  }

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

  .nav-links a {
    color: var(--dark-grey) !important;
    padding: 15px 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 30px;
  }

  .journey-timeline::before {
    left: 30px;
  }

  .journey-item,
  .journey-item:nth-child(odd) {
    flex-direction: column;
  }

  .journey-marker {
    position: relative;
    left: 0;
    transform: none;
    margin-bottom: 20px;
  }

  .journey-content,
  .journey-item:nth-child(odd) .journey-content {
    text-align: left;
    padding: 0 !important;
  }

  .verification-tool {
    padding: 30px 20px;
  }

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

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

  .step-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }
}

/* Animation utilities */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

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

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

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

/* Utility classes */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-green { color: var(--leaf-green); }
.bg-cream { background: var(--earth-cream); }
.bg-dark { background: var(--dark-grey); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.py-100 { padding: 100px 0; }
