/* Landing Page Styles - Saytailor */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&family=Playwrite+US+Modern:wght@100..400&display=swap');

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Mulish', 'Playwrite US Modern', sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(72, 101, 129, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #486581;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playwrite US Modern', cursive !important;
}

.logo i {
  font-size: 28px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

a {
  color: #ec4899;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #486581;
}

.accent  {
  color: #ec4899;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #486581 0%, #234369 100%);
  color: white !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(35, 67, 105, 0.3);
}

.btn-secondary {
  background: #f7fafc;
  color: #4a5568;
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  background: #edf2f7;
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #2d3748;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: #718096;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #486581;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-visual img:hover {
  transform: translateY(-4px);
}

.demo-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  width: 100%;
  max-width: 400px;
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e0;
}

.demo-dots span:first-child {
  background: #fc8181;
}

.demo-dots span:nth-child(2) {
  background: #f6ad55;
}

.demo-dots span:last-child {
  background: #68d391;
}

.demo-title {
  font-weight: 600;
  color: #2d3748;
}

.demo-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f7fafc;
  border-radius: 8px;
  font-size: 14px;
  color: #4a5568;
}

.demo-step.completed {
  background: #f0fff4;
  color: #2f855a;
}

.demo-step i {
  font-size: 16px;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 0;
  background: white;
}

.container-full {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px;
}

/* Feature Showcase - Inspired by Cursor's layout */
img {
  max-width: 100%;
  max-height: 80%;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid #e2e8f0;
}

.feature-showcase:last-of-type {
  border-bottom: none;
}

/* Reverse layout (visual on left, text on right) */
.feature-showcase.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.feature-showcase.reverse .feature-text {
  order: 2;
}

.feature-showcase.reverse .feature-visual-large {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Feature Text Content */
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #486581;
  display: inline-block;
}

.feature-text h3 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #2d3748;
  margin: 0;
}

.feature-text > p {
  font-size: 17px;
  line-height: 1.6;
  color: #718096;
  margin: 0;
}

/* Feature Benefits List */
.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-item i {
  font-size: 18px;
  color: #48bb78;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefit-item > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.benefit-item strong {
  font-size: 15px;
  font-weight: 600;
  color: #2d3748;
  display: block;
}

.benefit-item span {
  font-size: 14px;
  color: #718096;
  display: block;
  line-height: 1.4;
}

/* Feature Visual - Large placeholder */
.feature-visual-large {
  position: relative;
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual-large:hover {
  /* transform: translateY(-6px); */
  box-shadow: 0 24px 70px rgba(72, 101, 129, 0.15);
}

/* Visual Placeholder */
.visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.visual-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(72, 101, 129, 0.03) 0%, transparent 70%);
  animation: rotate-slow 20s linear infinite;
}

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

.visual-placeholder i {
  font-size: 100px;
  color: #cbd5e0;
  opacity: 0.5;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-visual-large:hover .visual-placeholder i {
  color: #486581;
  opacity: 0.7;
  transform: scale(1.08);
}

.visual-placeholder span {
  font-size: 14px;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* Legacy features grid styles */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: white;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #486581;
}

.feature-image {
  height: 200px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.feature-content {
  padding: 32px 24px;
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #486581 0%, #234369 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 24px;
  color: white;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
}

.feature-content p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-example {
  background: #f8fafc;
  border-left: 3px solid #486581;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #4a5568;
  text-align: left;
  margin-top: 16px;
}

.feature-example strong {
  color: #2d3748;
}

/* Mockup Styles */
.mockup-browser {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  overflow: hidden;
}

.browser-header {
  background: #f7fafc;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e0;
}

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

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

.browser-dots span:last-child {
  background: #68d391;
}

.browser-url {
  font-size: 12px;
  color: #4a5568;
  font-family: monospace;
}

.browser-content {
  padding: 16px;
}

.analysis-result {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.analysis-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #4a5568;
}

.analysis-item i {
  color: #486581;
  font-size: 14px;
}

.mockup-assessment {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}

.assessment-header {
  background: #486581;
  color: white;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.assessment-content {
  padding: 16px;
}

.fit-score {
  text-align: center;
  margin-bottom: 16px;
}

.score-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.score {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.label {
  font-size: 10px;
  color: white;
  opacity: 0.9;
}

.assessment-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.detail-item.positive {
  color: #38a169;
}

.detail-item.neutral {
  color: #d69e2e;
}

.detail-item i {
  font-size: 12px;
}

.mockup-recommendations {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}

.recommendations-header {
  background: #486581;
  color: white;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.recommendations-content {
  padding: 16px;
}

.recommendation-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.recommendation-item:last-child {
  margin-bottom: 0;
}

.rec-icon {
  width: 24px;
  height: 24px;
  background: #f7fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rec-icon i {
  font-size: 12px;
  color: #486581;
}

.rec-content {
  flex: 1;
}

.rec-title {
  font-size: 11px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 2px;
}

.rec-text {
  font-size: 10px;
  color: #4a5568;
  font-style: italic;
}

.mockup-email {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  overflow: hidden;
}

.email-header {
  background: #f7fafc;
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
}

.email-subject {
  font-size: 12px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.email-meta {
  font-size: 10px;
  color: #718096;
}

.email-body {
  padding: 16px;
}

.email-body p {
  font-size: 11px;
  color: #4a5568;
  line-height: 1.4;
  margin-bottom: 8px;
}

.email-body p:last-child {
  margin-bottom: 0;
}

.email-cta {
  background: #486581;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

.mockup-styles {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}

.styles-header {
  background: #486581;
  color: white;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.styles-content {
  padding: 16px;
}

.style-option {
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
  transition: all 0.2s;
}

.style-option.active {
  background: #f0fff4;
  border: 1px solid #48bb78;
}

.style-option:not(.active) {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
}

.style-name {
  font-size: 11px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.style-preview {
  font-size: 10px;
  color: #4a5568;
  font-style: italic;
}

.mockup-contacts {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}

.contacts-header {
  background: #486581;
  color: white;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.contacts-content {
  padding: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px;
  background: #f7fafc;
  border-radius: 6px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-avatar {
  width: 32px;
  height: 32px;
  background: #486581;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-avatar i {
  font-size: 14px;
  color: white;
}

.contact-info {
  flex: 1;
}

.contact-name {
  font-size: 11px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 2px;
}

.contact-title {
  font-size: 10px;
  color: #4a5568;
  margin-bottom: 2px;
}

.contact-email {
  font-size: 9px;
  color: #718096;
  font-family: monospace;
}

.contact-score {
  font-size: 10px;
  font-weight: 600;
  color: #48bb78;
  background: #f0fff4;
  padding: 4px 6px;
  border-radius: 4px;
}

.mockup-security {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}

.security-header {
  background: #486581;
  color: white;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.security-content {
  padding: 16px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 11px;
  color: #4a5568;
}

.security-item:last-child {
  margin-bottom: 0;
}

.security-item i {
  color: #48bb78;
  font-size: 14px;
}

.mockup-time {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}

.time-header {
  background: #486581;
  color: white;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.time-content {
  padding: 16px;
}

.time-method {
  margin-bottom: 16px;
}

.time-method:last-child {
  margin-bottom: 0;
}

.time-label {
  font-size: 11px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 6px;
}

.time-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}

.time-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.time-method.old .time-fill {
  background: #fc8181;
}

.time-method.new .time-fill {
  background: #48bb78;
}

.time-value {
  font-size: 10px;
  color: #4a5568;
  font-weight: 600;
}

.time-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f0fff4;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #38a169;
}

.time-savings i {
  font-size: 12px;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #486581 0%, #234369 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
}

.step-content p {
  color: #718096;
  line-height: 1.6;
}

/* Pricing Examples */
.pricing-examples {
  margin-top: 60px;
  text-align: center;
}

.pricing-examples h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 32px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 24px;
}

.example-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.example-card:hover {
  border-color: #486581;
  transform: translateY(-2px);
}

.example-amount {
  font-size: 32px;
  font-weight: 800;
  color: #486581;
  margin-bottom: 8px;
}

.example-credits {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.example-bonus {
  font-size: 14px;
  color: #10b981;
  font-weight: 500;
}

.pricing-note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

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

.pricing-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #486581;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #486581 0%, #234369 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: #486581;
  margin-bottom: 8px;
}

.price span {
  font-size: 16px;
  color: #718096;
  font-weight: 400;
}

.pricing-header p {
  color: #718096;
  margin-bottom: 32px;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #4a5568;
}

.pricing-features i {
  color: #48bb78;
  font-size: 16px;
}

/* Install Section */
.install {
  padding: 80px 0;
  background: linear-gradient(135deg, #486581 0%, #234369 100%);
  color: white;
}

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

.install-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.install-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 60px;
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

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

.install-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.install-icon i {
  font-size: 32px;
}

.install-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.install-text p {
  opacity: 0.8;
  font-size: 14px;
}

.install-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.install-note {
  font-size: 14px;
  opacity: 0.7;
  font-style: italic;
}

/* Footer */
.footer {
  background: #2d3748;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  opacity: 0.8;
  max-width: 300px;
}

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

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  opacity: 0.8;
}

.wildpixel-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  opacity: 0.5;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.wildpixel-logo {
  height: 32px;
  width: auto;
  /* opacity: 0.7; */
}

.wildpixel-badge:hover {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(1.15);
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
  margin-top: 32px;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  color: #718096;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.about-visual {
  position: sticky;
  top: 100px;
}

.about-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
}

.about-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
}

.about-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 24px;
}

.team-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-item i {
  font-size: 20px;
  color: #486581;
  margin-top: 4px;
}

.value-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 14px;
  color: #718096;
  margin: 0;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-item p {
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-content {
  display: flex;
  flex-direction: row;
  /* grid-template-columns: 1fr 1fr;
  gap: 60px; */
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item i {
  font-size: 24px;
  color: #486581;
  margin-top: 4px;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.contact-item p {
  color: #718096;
  margin-bottom: 4px;
  line-height: 1.5;
}

.contact-item p:last-child {
  margin-bottom: 0;
}

.contact-form {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #486581;
  box-shadow: 0 0 0 3px rgba(72, 101, 129, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container-full {
    padding: 0 32px;
  }
  
  .feature-showcase {
    gap: 48px;
    padding: 64px 0;
  }
  
  .feature-text h3 {
    font-size: 32px;
  }
  
  .feature-text > p {
    font-size: 16px;
  }
  
  .feature-visual-large {
    height: 420px;
  }
  
  .visual-placeholder i {
    font-size: 90px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
  }
  
  .nav-links a:not(.btn) {
    display: none;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 24px;
  }
  
  .hero-visual img {
    max-height: 300px;
  }
  
  /* Feature showcase responsive */
  .container-full {
    padding: 0 24px;
  }
  
  .feature-showcase,
  .feature-showcase.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 0;
  }
  
  .feature-showcase.reverse .feature-text,
  .feature-showcase.reverse .feature-visual-large {
    order: initial;
  }
  
  .feature-text h3 {
    font-size: 28px;
  }
  
  .feature-text > p {
    font-size: 16px;
  }
  
  .feature-visual-large {
    height: 360px;
  }
  
  .visual-placeholder i {
    font-size: 70px;
  }
  
  .visual-placeholder span {
    font-size: 13px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-card {
    margin-bottom: 0;
  }
  
  .feature-image {
    height: 160px;
    padding: 16px;
  }
  
  .feature-content {
    padding: 24px 20px;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    justify-content: center;
    gap: 24px;
  }
  
  .about-visual {
    position: static;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .container-full {
    padding: 0 20px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .hero-visual img {
    max-height: 250px;
  }
  
  /* Feature showcase mobile */
  .feature-showcase {
    padding: 44px 0;
    gap: 28px;
  }
  
  .feature-text h3 {
    font-size: 26px;
  }
  
  .feature-text > p {
    font-size: 15px;
  }
  
  .feature-label {
    font-size: 12px;
  }
  
  .feature-text {
    gap: 16px;
  }
  
  .feature-benefits {
    gap: 12px;
  }
  
  .feature-visual-large {
    height: 280px;
  }
  
  .visual-placeholder i {
    font-size: 56px;
  }
  
  .visual-placeholder span {
    font-size: 12px;
  }
  
  .benefit-item {
    gap: 12px;
  }
  
  .benefit-item strong {
    font-size: 14px;
  }
  
  .benefit-item span {
    font-size: 13px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-form {
    padding: 24px;
  }
}

/* Time Savings Callout Section */
.time-savings-callout {
  padding: 80px 0;
  background: linear-gradient(135deg, #486581 0%, #234369 100%);
  color: white;
}

.callout-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.callout-icon {
  flex-shrink: 0;
}

.callout-icon i {
  font-size: 64px;
  color: #fbbf24;
}

.callout-text {
  flex: 1;
}

.callout-text h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.callout-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.callout-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.callout-stat {
  text-align: center;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.callout-arrow i {
  font-size: 32px;
  color: #fbbf24;
}

/* Compact Features Grid */
.features-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.feature-card-compact {
  padding: 40px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #486581;
}

.feature-icon-large {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #486581 0%, #234369 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-large i {
  font-size: 32px;
  color: white;
}

.feature-card-compact h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-card-compact p {
  font-size: 16px;
  color: #718096;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-highlights span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
}

.feature-highlights i {
  color: #10b981;
  font-size: 16px;
}

/* Simple Pricing Section */
.pricing-simple {
  padding: 80px 0;
  background: #f8fafc;
}

.pricing-compact {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing-compact h2 {
  font-size: 36px;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 40px;
}

.pricing-details {
  background: white;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
}

.pricing-main {
  /* margin-bottom: 40px; */
  padding-bottom: 40px;
  /* border-bottom: 1px solid #e2e8f0; */
}

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

.price-large {
  font-size: 56px;
  font-weight: 800;
  color: #486581;
}

.price-unit {
  font-size: 18px;
  color: #718096;
  font-weight: 500;
}

.pricing-description {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.6;
}

.credit-usage {
  margin-top: 16px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.credit-item {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 4px 0;
  font-size: 13px;
}

.credit-operation {
  color: #4a5568;
  font-weight: 500;
}

.credit-cost {
  color: #486581;
  font-weight: 600;
}

.credit-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
  font-size: 12px;
  color: #718096;
  font-style: italic;
}

.credit-note i {
  color: #486581;
  font-size: 11px;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2d3748;
  color: white;
  text-align: center;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  z-index: 1000;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #2d3748 transparent transparent transparent;
}

.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.pricing-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.pricing-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pricing-benefit i {
  font-size: 32px;
  color: #486581;
  margin-bottom: 4px;
}

.pricing-benefit span {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
  .callout-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  
  .callout-stats {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .callout-stat {
    width: 100%;
  }
  
  .callout-arrow {
    transform: rotate(90deg);
  }
  
  .callout-text h2 {
    font-size: 32px;
  }
  
  .features-grid-compact {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-card-compact {
    padding: 32px;
  }
  
  .pricing-details {
    padding: 32px 24px;
  }
  
  .pricing-benefits {
    flex-direction: column;
    gap: 24px;
  }
  
  .price-large {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .time-savings-callout {
    padding: 60px 0;
  }
  
  .callout-icon i {
    font-size: 48px;
  }
  
  .callout-text h2 {
    font-size: 28px;
  }
  
  .callout-text p {
    font-size: 16px;
  }
  
  .stat-value {
    font-size: 24px;
  }
  
  .feature-card-compact {
    padding: 24px;
  }
  
  .feature-card-compact h3 {
    font-size: 20px;
  }
  
  .pricing-compact h2 {
    font-size: 28px;
  }
  
  .price-large {
    font-size: 40px;
  }
}
