
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Gradient Theme Colors from Optim👀 */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    
    /* Base Colors */
    --primary-blue: #667eea;
    --secondary-purple: #764ba2;
    --accent-pink: #f093fb;
    --accent-coral: #f5576c;
    
    /* Neutral Colors */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 120px 20px;
    --card-padding: 32px;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #542c7c 0%, #3c52b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eye-icon {
    font-size: 1.5rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-button.full-width {
    width: 100%;
    text-align: center;
}

.secondary-button {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.secondary-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-drawer.open {
    visibility: visible;
    opacity: 1;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.nav-drawer.open .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4a5568;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: #f7fafc;
    color: #667eea;
}

.drawer-links {
    flex: 1;
    padding: 1rem 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.drawer-link:hover,
.drawer-link.active {
    background: #f7fafc;
    color: #667eea;
    border-left-color: #667eea;
}

.drawer-link i {
    font-size: 1.2rem;
    width: 20px;
}

.drawer-footer {
    padding: 2rem;
    border-top: 1px solid #e2e8f0;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-visual {
    margin-top: 4rem;
}

.typed-static {
  display: inline-block;                
  width: 100%;
  margin: 0 auto 0.5rem;          
  text-align: center;             
  white-space: normal;            
  font-weight: 700;
  /* font-size: clamp(20px, 4vw + 8px, 60px);  */
  line-height: 1.1;
}

.typed-cursor {
    display: inline-block;
    font-weight: 600;
    margin-left: 1px;
    opacity: 0;
    animation: typedBlink 0.7s infinite;
  }
  @keyframes typedBlink { 0% { opacity: 0 } 49% { opacity: 1 } 50% { opacity: 0 } 99% { opacity: 0 } 100% { opacity: 1 } }

.feature-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: -2s;
}

.floating-card:nth-child(3) {
    animation-delay: -4s;
}

.floating-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.score-circle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.score-number {
    font-size: 2.5rem;
    font-weight: 900;
}

.score-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.mini-recommendations {
    space: 0.75rem;
}

.rec-item {
    background: rgba(83, 205, 243, 0.5);
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.gradient-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 12000;
}
.video-modal.open {
  display: flex;
}
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.video-modal-content {
  position: relative;
  width: min(1100px, 96vw);
  max-height: 90vh;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper {
  width: 100%;
  height: 100%;
}
.video-wrapper video {
  width: 100%;
  height: calc(min(90vh, 620px));
  max-height: 90vh;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
}
/* Close button */
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 8px 10px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}
/* Visually-hidden helper */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* small responsive tweak for very small screens */
@media (max-width: 420px) {
  .video-modal-close { top: 6px; right: 6px; font-size: 16px; padding:6px; }
  .video-wrapper video { height: calc(80vh); }
}

/* Section Styles */
.about-section,
.features-section,
.audience-section,
.request-section {
    padding: 80px 0;
    background: white;
}

.about-section {
    /* background: linear-gradient(180deg, #f7fafc 0%, white 100%); */
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);

}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

.section-header p {
    font-size: 20px;
    color: var(--gray-600);
}

/* About Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.comparison-card.negative {
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
    border: 2px solid #fca5a5;
}

.comparison-card.positive {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    /* border-color: #c6f6d5; */
    border: 2px solid #86efac;

}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.error-icon {
    font-size: 3rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.success-icon {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 1rem;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.comparison-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.comparison-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-card li i {
    color: #667eea;
}

.money-indicator {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
}

.money-lost {
    color: #e53e3e;
}

.money-saved {
    color: #38a169;
}

.painpoint-highlight {
    margin-top: 2.5rem;
}

.painpoint-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fcd34d;
    border-radius: 1rem;
    padding: var(--card-padding);
    text-align: center;
    position: relative;
    padding: 1.1rem;
}

.painpoint-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 1rem;
}

.painpoint-card p {
    font-size: 1.2rem;
    color: #78350f;
    font-weight: 500;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-tile {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-tile:hover::before {
    transform: scaleX(1);
}

.feature-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-tile h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.feature-tile p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-preview {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
}

/* Feature Preview Styles */
.category-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.rec-item {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.rec-list .rec-item {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    position: relative;
    padding-left: 1.5rem;
}

.rec-item.priority-high::before {
    content: "🔴";
    position: absolute;
    left: 0.5rem;
}

.rec-item.priority-medium::before {
    content: "🟡";
    position: absolute;
    left: 0.5rem;
}

.rec-item.priority-low::before {
    content: "🟢";
    position: absolute;
    left: 0.5rem;
}

.trend-chart {
    width: 100%;
    height: 60px;
}

.report-preview {
    font-size: 0.8rem;
}

.report-header {
    font-weight: 600;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.report-score {
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.report-section {
    padding: 0.25rem 0;
    border-left: 3px solid rgba(102, 126, 234, 0.3);
    padding-left: 0.5rem;
    margin-bottom: 0.25rem;
}

.loading-demo {
    font-size: 0.85rem;
}

.url-input {
    background: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
    margin-bottom: 0.5rem;
    font-family: monospace;
}

.loading-bar {
    height: 4px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.loading-progress {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.result-ready {
    color: green;
    font-weight: 600;
}

.dashboard-preview {
    font-size: 0.8rem;
}

.dashboard-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.nav-item {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background: rgba(102, 126, 234, 0.1);
}

.nav-item.active {
    background: var(--primary-gradient);
    color: white;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.dashboard-card {
    background: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
    text-align: center;
}

.demo-preview {
    background: #f7fafc;
    padding: 0.75rem;
    border-radius: 10px;
    color: #667eea;
    font-weight: 500;
    border: 1px dashed #667eea;
    transition: all 0.3s ease;
}

.feature-tile:hover .demo-preview {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Audience Section */
.audience-section {
    /* background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); */
    /* background: linear-gradient(180deg, white 0%, #f7fafc 100%); */
    background: rgba(255, 255, 255, 0.1);

}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-gradient-text {
    background: linear-gradient(135deg, #3150db 0%, #8546c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audience-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(50px);
}

.audience-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.audience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.audience-card p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.use-case {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    border-left: 4px solid #667eea;
}

.use-case-label {
    font-weight: 600;
    color: #667eea;
}

/* Request Section */
.request-content {
    max-width: 800px;
    margin: 0 auto;
}

.voting-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.feature-requests {
    space-y: 1rem;
}

.request-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.request-item:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.request-info h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.request-info p {
    color: #4a5568;
    font-size: 0.9rem;
}

.vote-btn {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.vote-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
}

.vote-btn i {
    font-size: 1.2rem;
}

.vote-count {
    font-weight: 600;
    font-size: 1.1rem;
}

.vote-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

.request-form {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
}

.request-form h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-form input,
.feature-form textarea {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.feature-form input:focus,
.feature-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.feature-form textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.vote-indicator {
    margin-top: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border: 2px solid #81d4fa;
    border-radius: 1rem;
    padding: 2rem;
}

.vote-indicator p {
    font-size: 1rem;
    color: #334155;
    margin: 0;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    color: #a0aec0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .drawer-content {
        width: 100%;
        max-width: 350px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .voting-interface {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .audience-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}
