/* Base Styles and CSS Reset */
:root {
  --primary-color: #2874f0;
  --primary-light: #4285f4;
  --primary-lighter: #e3f2fd;
  --secondary-color: #fb641b;
  --primary-mix: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 50%, #ddd6fe 100%);
  --text-color: #212121;
  --text-light: #878787;
  --bg-color: #ffffff;
  --bg-light: #f1f3f6;
  --bg-dark: #0f172a;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --header-bg: #ffffff;
  --header-border: rgba(255, 255, 255, 0.3);
  --header-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  --footer-bg: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  --header-text: #1e293b;
  --gradient-light: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  --font-stack: "Inter", system-ui, -apple-system, sans-serif;
  --border-radius: 4px;
  --transition-speed: 0.2s;
  --testimonial-primary-lighter: #f0f7ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-stack);
  color: var(--text-color);
  background: var(--bg-light);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Glass Effect Styles */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--glass-shadow);
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  box-shadow: var(--header-shadow);
  padding: 0.5rem 0;
}

header .container {
  padding: 0.5rem 1rem;
  max-width: 1400px;
  width: 100%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.logo a {
  text-decoration: none;
  color: var(--primary-color);
  z-index: 2;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius);
  transition: color 0.2s ease;
}

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

.nav-links a[aria-current="page"] {
  color: var(--primary-color);
  background-color: var(--primary-lighter);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.auth-buttons .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
  text-decoration: none;
}

.auth-buttons .login-btn {
  color: var(--primary-color);
  background: var(--bg-color);
  border: 1px solid #e0e0e0;
}

.auth-buttons .login-btn:hover {
  border-color: var(--primary-color);
}

.auth-buttons .signup-btn {
  background: var(--primary-color);
  color: white;
}

.auth-buttons .signup-btn:hover {
  background: var(--primary-light);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 2;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-color);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-color);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: block;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--header-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    padding: 2rem;
  }

  .nav-toggle:checked ~ .nav-wrapper {
    right: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label .hamburger {
    background: transparent;
  }

  .nav-toggle:checked ~ .nav-toggle-label .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
  }

  .auth-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .auth-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.25rem;
  }

  .nav-wrapper {
    padding: 1rem;
  }

  .nav-links a {
    font-size: 1rem;
  }
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: var(--primary-mix);
  position: relative;
  overflow: hidden;
  margin: 0;
  max-width: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.05) 0%,
    transparent 100%
  );
}

.hero .container {
  position: relative;
  max-width: 1200px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-text {
  flex: 1;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  position: relative;
  min-width: 0;
  perspective: 1000px;
}

.hero-image .chat-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-color);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: rotateY(-5deg) translateZ(0);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.hero-image .chat-container:hover {
  transform: rotateY(0) translateZ(0);
}

.chat-header {
  padding: 16px;
  background: white;
  border-bottom: 1px solid #e4ebe4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.back-button {
  color: #656565;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icon {
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #656565;
  cursor: pointer;
}

.chat-messages {
  padding: 20px;
  background: #ffffff;
  min-height: 400px;
}

.message {
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  animation: fadeIn 0.5s ease-out;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e4ebe4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--primary-color);
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.message-content {
  flex-grow: 1;
  max-width: 85%;
}

.message-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.name {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.time {
  color: #5e6d55;
  font-size: 0.85rem;
}

.message-text {
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
  background: #f2f7f2;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
}

.client-message .message-text {
  background: #f2f7f2;
}

.my-message .message-text {
  background: #ffffff;
  border: 1px solid #e4ebe4;
}

.typing-animation {
  display: inline-flex;
  gap: 4px;
  padding: 12px 16px;
  background: #f8f8f8;
  border-radius: 12px;
  margin-top: 4px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #90a4ae;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: #656565;
  font-size: 0.9em;
}

.stars {
  color: #ffb800;
}

.timestamp {
  text-align: center;
  margin: 20px 0;
  color: #656565;
  font-size: 0.85rem;
}

.timestamp span {
  background: #f2f2f2;
  padding: 4px 12px;
  border-radius: 12px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dollar-sign {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

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

.hero h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  background: var(--primary-lighter);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.feature-text {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.hero .cta-buttons {
  margin-top: 1.5rem;
}

.hero .cta-buttons {
  display: flex;
  gap: 1rem;
}

.hero .btn {
  padding: 0.875rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  transition: all var(--transition-speed) ease;
}

.hero .primary-btn {
  background: var(--primary-color);
  color: white;
}

.hero .primary-btn:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .hero-content {
    gap: 2rem;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero-image .chat-container {
    max-width: 100%;
  }

  .chat-messages {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

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

  .hero .cta-buttons {
    justify-content: center;
  }

  .hero-image .chat-container {
    transform: none;
  }

  .hero-image .chat-container:hover {
    transform: none;
  }

  .chat-messages {
    min-height: 250px;
  }

  .dollar-sign {
    font-size: 3rem;
    right: 10px;
  }
}

/* Trusted By Section */
.trusted-by {
  padding: 4rem 0;
  background-color: #f8f9fa;
  text-align: center;
}

.trusted-by h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #333;
}

.platforms-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-width: 120px;
}

.platform-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.platform-name {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Platform specific colors */
.upwork .platform-icon {
  background: linear-gradient(135deg, #37a000, #2d7d00);
}

.fiverr .platform-icon {
  background: linear-gradient(135deg, #1dbf73, #0a9e5a);
}

.freelancer .platform-icon {
  background: linear-gradient(135deg, #29b2fe, #0a8fe3);
}

.toptal .platform-icon {
  background: linear-gradient(135deg, #3863fa, #2a4fd4);
}

.guru .platform-icon {
  background: linear-gradient(135deg, #f26d21, #d45a1a);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.stat-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #0b6fff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .platforms-grid {
    gap: 1rem;
  }

  .platform-item {
    min-width: 100px;
    padding: 0.8rem;
  }

  .platform-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .platforms-grid {
    gap: 0.5rem;
  }

  .platform-item {
    min-width: 80px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .platform-name {
    font-size: 0.8rem;
  }
}

/* Templates Section */
.templates-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 50%, #ddd6fe 100%);
  background-attachment: fixed;
}

.templates-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.template-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: left;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.template-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.template-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.template-card:hover::before {
  opacity: 1;
}

.template-content h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.template-content .btn {
  background: var(--primary-lighter);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
}

.template-content .btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Features Section */
.features-section {
  padding: 8rem 0;
  background: var(--bg-light);

  text-align: center;
}

.features-section h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

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

.feature h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: var(--primary-mix);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.testimonials-section .section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

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

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b6fff 0%, #0a5ed9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.user-info {
  flex-grow: 1;
}

.user-info h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.user-title {
  font-size: 0.9rem;
  color: #666;
}

.rating {
  color: #ffb800;
  font-size: 1.2rem;
}

blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin: 0 0 1.5rem 0;
  padding: 0;
  font-style: italic;
  position: relative;
}

blockquote::before {
  content: '"';
  font-size: 3rem;
  color: #0b6fff;
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.testimonial-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.platform-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
}

.platform-badge.upwork {
  background: linear-gradient(135deg, #37a000, #2d7d00);
}

.platform-badge.fiverr {
  background: linear-gradient(135deg, #1dbf73, #0a9e5a);
}

.platform-badge.freelancer {
  background: linear-gradient(135deg, #29b2fe, #0a8fe3);
}

.date {
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .user-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Footer */
footer {
  margin-top: auto;
  padding: 4rem 0 2rem;
  background: var(--footer-bg);
  color: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

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

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-speed) ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.legal-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
}

.legal-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-speed) ease;
}

.legal-links a:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 90%;
  }

  header .container {
    padding: 0.5rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 0.5rem;
  }

  .auth-buttons {
    margin-left: 0;
  }

  .auth-buttons .btn {
    padding: 0.5rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Accessibility Enhancements */
:focus {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Print Styles */
@media print {
  .glass-effect {
    box-shadow: none;
    background: white;
    border: 1px solid #ddd;
  }

  body {
    background: white;
    color: black;
  }

  nav,
  .cta-buttons,
  footer {
    display: none;
  }
}

/* Performance Optimizations */
img,
video {
  max-width: 100%;
  height: auto;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: var(--primary-mix);
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

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

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #0b6fff;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #0b6fff;
}

.period {
  font-size: 1rem;
  color: #666;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.price-description {
  color: #666;
  font-size: 0.9rem;
}

.pricing-features {
  margin: 1.5rem 0;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #333;
  padding: 0.5rem 0;
}

.feature-icon {
  color: #0b6fff;
  font-weight: bold;
  min-width: 20px;
}

/* Remove button-related styles */
.pricing-cta,
.secondary-btn,
.primary-btn,
.trial-note {
  display: none;
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 4rem 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .pricing-section h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .pricing-card {
    padding: 1.25rem;
  }
}

/* Pricing Hero Section */
.pricing-hero {
  padding: 4rem 0;
  background: var(--primary-mix);
  text-align: center;
}

.pricing-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-hero h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.pricing-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.save-badge {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

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

.pricing-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.period {
  font-size: 1rem;
  color: var(--text-light);
}

.original-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.price-description {
  color: var(--text-light);
  font-size: 0.9rem;
}

.pricing-features {
  margin: 2rem 0;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature-icon {
  color: var(--primary-color);
  font-weight: bold;
}

.pricing-cta {
  text-align: center;
  margin-top: 2rem;
}

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

.trial-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

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

.faq-item {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-hero h2 {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card {
    padding: 1.5rem;
  }
}

/* About Hero Section */
.about-hero {
  padding: 6rem 0;
  background: var(--primary-mix);
  text-align: center;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h2 {
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-size: 1.25rem;
  color: var(--text-light);
}

/* Mission Section */
.mission-section {
  padding: 6rem 0;
  background: white;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-text {
  flex: 1;
}

.mission-text h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.mission-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Values Section */
.values-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 3rem;
}

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

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

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

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: white;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 3rem;
}

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

.team-member {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.team-member h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--primary-mix);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-content {
    flex-direction: column;
    gap: 2rem;
  }

  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero h2,
  .mission-text h2,
  .values-section h2,
  .team-section h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .mission-stats {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .mission-section,
  .values-section,
  .team-section,
  .cta-section {
    padding: 4rem 0;
  }
}

/* Who We Are Section */
.who-we-are {
  padding: 5rem 0;
  background: var(--bg-light);
}

.who-we-are h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.who-we-are-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.who-we-are-text {
  flex: 1;
}

.who-we-are-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #555;
}

.who-we-are-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.who-we-are-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.who-we-are-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0b6fff;
  margin-bottom: 0.5rem;
}

.who-we-are-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
}

.who-we-are-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.who-we-are-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .who-we-are-content {
    flex-direction: column;
  }

  .who-we-are-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .who-we-are-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* AI Powered Section */
.ai-powered-section {
  padding: 5rem 0;
}

.ai-powered-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.ai-powered-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ai-powered-text {
  flex: 1;
}

.ai-powered-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #555;
}

.ai-powered-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.ai-powered-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ai-powered-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0b6fff;
  margin-bottom: 0.5rem;
}

.ai-powered-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
}

.ai-powered-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ai-powered-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .ai-powered-content {
    flex-direction: column;
  }

  .ai-powered-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ai-powered-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* Proposal Interface Styles */
.proposal-interface {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.interface-header {
  padding: 1.5rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.ai-icon {
  font-size: 1.5rem;
}

.header-title h3 {
  font-size: 1.25rem;
  color: #333;
  margin: 0;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #e8f5e9;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #2e7d32;
  font-size: 0.9rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #2e7d32;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.interface-content {
  padding: 1.5rem;
}

.input-section {
  margin-bottom: 1.5rem;
}

.input-section label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.text-area {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  min-height: 100px;
}

.text-area p {
  margin: 0;
  color: #495057;
  line-height: 1.5;
}

.output-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
}

.generation-status {
  margin-bottom: 1.5rem;
}

.status-bar {
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress {
  height: 100%;
  background: #0b6fff;
  width: 75%;
  animation: progress 2s infinite;
}

.status-text {
  font-size: 0.9rem;
  color: #666;
}

.proposal-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.preview-line {
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  width: 100%;
  animation: shimmer 2s infinite;
}

.interface-footer {
  padding: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.metrics {
  display: flex;
  justify-content: space-around;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b6fff;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.9rem;
  color: #666;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 75%;
  }
}

@keyframes shimmer {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .proposal-interface {
    max-width: 100%;
  }

  .interface-header {
    padding: 1rem;
  }

  .interface-content,
  .interface-footer {
    padding: 1rem;
  }

  .header-title h3 {
    font-size: 1.1rem;
  }

  .metric-value {
    font-size: 1.25rem;
  }
}
