/* Download Page Specific Styles */

/* Demo GIF Styles */
.demo-gif-container {
  margin: 3rem 0;
  text-align: center;
}

.gif-wrapper {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  width: 100%;
}

.demo-gif {
  width: 100%;
  height: auto;
  display: block;
}

.gif-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gif-wrapper:hover .gif-overlay {
  opacity: 1;
}

.play-indicator {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  padding: 1rem;
  color: var(--primary);
  backdrop-filter: blur(10px);
}

.demo-caption {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Workflow Comparison Section */
.workflow-comparison {
  padding: 6rem 0;
  background: var(--gray-50);
}

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

.workflow-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.workflow-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.workflow-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
}

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

.workflow-card.before {
  border-left: 4px solid var(--error);
}

.workflow-card.after {
  border-left: 4px solid var(--success);
}

.workflow-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.workflow-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.workflow-card .card-emoji {
  font-size: 2rem;
}

.workflow-steps {
  margin-bottom: 2rem;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.workflow-card.before .workflow-step {
  background: rgba(239, 68, 68, 0.05);
}

.workflow-card.after .workflow-step {
  background: rgba(16, 185, 129, 0.05);
}

.workflow-step:hover {
  transform: translateX(4px);
}

.workflow-step .step-number {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.workflow-step .step-text {
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.5;
}

.workflow-result {
  padding: 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}

.workflow-card.before .workflow-result {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.workflow-card.after .workflow-result {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Download Header */
.download-header {
  background: var(--surface);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
}

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

.logo-link {
  text-decoration: none;
}

.logo-link:hover .logo-text {
  opacity: 0.8;
}

.header-nav .nav-link {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.header-nav .nav-link:hover {
  color: var(--primary);
}

/* Download Hero */
.download-hero {
  padding: 4rem 0 6rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.title-highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Download CTA */
.hero-cta {
  margin-bottom: 2rem;
}

.btn-download {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  min-width: 220px;
}

.btn-download.large {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  min-width: 250px;
}

.btn-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.btn-download:hover::before {
  left: 100%;
}

.btn-download:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.btn-download:active:not(:disabled) {
  transform: translateY(0);
}

.download-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.download-text,
.download-text-2 {
  font-weight: 700;
  letter-spacing: 0.025em;
}

.download-subtitle {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Demo Section */
.demo-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

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

.demo-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.demo-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 4rem;
}

.demo-showcase {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

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

.scenario-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.scenario-header p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

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

.demo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Visual Mockups */
.step-visual {
  width: 100%;
  max-width: 300px;
}

.browser-mockup {
  background: var(--surface);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.browser-bar {
  background: var(--gray-100);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.browser-dots {
  display: flex;
  gap: 0.25rem;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--gray-400);
}

.browser-dots span:first-child {
  background: #ff5f57;
}

.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
  background: #28ca42;
}

.browser-url {
  background: var(--surface);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  flex: 1;
}

.browser-content {
  padding: 1.5rem;
  text-align: left;
}

.browser-content p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.highlight-text {
  background: #fef3c7;
  padding: 0.125rem 0.25rem;
  border-radius: var(--radius-sm);
  color: var(--gray-900);
  font-weight: 600;
}

/* Extension Popup Mockup */
.extension-popup {
  background: var(--surface);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
}

.popup-header {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1rem;
  text-align: center;
}

.popup-logo {
  font-weight: 700;
  font-size: 1rem;
}

.popup-content {
  padding: 1.5rem;
}

.search-input {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.search-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.search-result.available {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-icon {
  font-size: 1.125rem;
}

.status-text {
  font-weight: 600;
  color: var(--success);
}

.popup-btn {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

/* Results Showcase */
.results-showcase {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 250px;
  margin: 0 auto;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.result-item.available {
  border-color: var(--success);
  background: rgba(16, 185, 129, 0.05);
}

.result-item.taken {
  border-color: var(--error);
  background: rgba(239, 68, 68, 0.05);
}

.result-item .domain {
  font-weight: 600;
  color: var(--gray-900);
}

.result-item.available .status {
  color: var(--success);
  font-weight: 600;
}

.result-item.taken .status {
  color: var(--error);
  font-weight: 600;
}
/* E
nhanced Social Proof Section */
.social-proof-section {
  padding: 6rem 0;
  background: var(--surface);
}

.social-proof-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.proof-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.proof-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.proof-quote {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.proof-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.proof-author strong {
  color: var(--primary);
  font-weight: 600;
}

.proof-author span {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.proof-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Enhanced Final CTA Section */
.final-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.final-cta-description {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.urgency-indicator {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  margin-bottom: 3rem;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.urgency-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fbbf24;
}

.final-cta-buttons {
  margin-bottom: 2rem;
}

.btn-download.large {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.trust-icon {
  font-size: 1rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .proof-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
  
  .demo-gif-container {
    margin: 2rem 0;
  }
  
  .gif-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .workflow-title,
  .social-proof-title,
  .final-cta-title {
    font-size: 2rem;
  }
  
  .workflow-card,
  .proof-card {
    padding: 1.5rem;
  }
  
  .final-cta-section {
    padding: 4rem 0;
  }
  
  .btn-download.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
}/* Fe
atures at a Glance Section */
.features-glance {
  padding: 6rem 0;
  background: var(--gray-50);
}

.features-glance-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.features-glance-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.features-comparison {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}

.comparison-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.comparison-row:hover {
  background: var(--gray-50);
}

.comparison-col {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.comparison-col.without {
  color: var(--gray-600);
}

.comparison-col.with {
  color: var(--gray-900);
  font-weight: 500;
}

.comparison-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Responsive Design for Features Comparison */
@media (max-width: 768px) {
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .comparison-header {
    text-align: center;
  }
  
  .comparison-col {
    justify-content: center;
    text-align: center;
  }
  
  .features-comparison {
    padding: 1.5rem;
  }
}

/* Additional hover effects for proof cards */
.proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

/* Enhanced urgency indicator animation */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
  }
}

.urgency-indicator {
  animation: pulse-glow 2s infinite;
}

/* Enhanced GIF wrapper effects */
.gif-wrapper::after {
  content: 'Click to replay';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gif-wrapper:hover::after {
  opacity: 1;
}