/* Voiact Landing Page Styles */

/* ============================================
   HERO SECTION - Split Layout
   ============================================ */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #fafbfc 100%);
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}

.hero-header {
  text-align: center;
  padding: 1.5rem 2rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-logo {
  display: block;
  max-width: 300px;
  height: auto;
  margin: 0 auto 0.75rem;
}

.tagline {
  color: var(--color-accent);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 450px;
}

.hero-content {
  padding: 1rem 2rem 2rem 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.hero-hook {
  font-size: 1rem;
  color: var(--color-text);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
  padding: 1rem 1.25rem;
  background: rgba(255, 159, 26, 0.08);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
  text-align: left;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.hero-feature {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  background: rgba(255, 159, 26, 0.1);
  border: 1px solid rgba(255, 159, 26, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-feature:hover {
  background: rgba(255, 159, 26, 0.2);
  transform: translateY(-2px);
}

.hero-feature svg {
  width: 18px;
  height: 18px;
  color: #ff9f1a;
}

/* Tooltip */
.hero-feature::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-feature::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

.hero-feature:hover::after,
.hero-feature:hover::before {
  opacity: 1;
  visibility: visible;
}

.cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(217, 118, 23, 0.25);
  text-decoration: none;
}

.cta-button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 118, 23, 0.35);
  color: var(--color-white);
}

.hero-cta-wrapper {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-button-secondary {
  display: inline-block;
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.cta-button-secondary:hover {
  color: var(--color-accent);
}

.no-credit-card {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Trust Line */
.trust-line {
  text-align: center;
  padding: 1.5rem 2rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.trust-line p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 121, 191, 0.08);
  border: 1px solid rgba(0, 121, 191, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--color-text);
  font-weight: 500;
}

.trust-logo {
  height: 18px;
  width: auto;
}

.hero-footer {
  text-align: center;
  padding: 2rem 2rem 3rem;
}

.hero-grant {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 159, 26, 0.1);
  border: 1px solid rgba(255, 159, 26, 0.3);
  border-radius: 100px;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.hero-grant-text {
  color: var(--color-text-light);
}

.hero-grant-logo {
  height: 24px;
  width: auto;
}

.hero-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.partner-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.partner-logo:hover {
  transform: translateY(-3px);
}

.partner-logo img {
  height: 40px;
  width: auto;
}

.partner-name {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--color-border-light);
  transition: var(--transition);
}

.hero-social a:hover {
  background: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero-social img {
  width: 18px;
  height: 18px;
}

.hero-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-image img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  filter: brightness(1.05);
}

/* ============================================
   WHAT YOU CAN SAY SECTION
   ============================================ */
.what-you-can-say {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

.command-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.command-card {
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition);
}

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

.command-text {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.command-quote {
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.command-result {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.command-result svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  margin-top: 2px;
}

/* ============================================
   VALUE TRANSITION (Before/After)
   ============================================ */
.value-transition {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f5 100%);
}

.before-after {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  flex-wrap: wrap;
}

.before, .after {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
}

.before {
  background: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.after {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a6e 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(44, 62, 143, 0.25);
}

.before h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: #9ca3af;
}

.after h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.before p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--color-text-light);
}

.after p {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.transition-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.transition-arrow svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.transition-tagline {
  text-align: center;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text-light);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   HOW IT WORKS - Two Column Layout
   ============================================ */
.how-it-works {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
}

.how-it-works-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-it-works-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title-left {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-size: 2rem;
}

.how-it-works-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  text-align: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-info {
  text-align: center;
}

.step-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.25rem 0;
}

.step-info p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.how-it-works-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.how-it-works-image img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  filter: brightness(1.05);
}

/* ============================================
   SECTIONS (Generic)
   ============================================ */
section {
  padding: 4rem 0;
  background: var(--color-bg-section);
}

section:nth-child(even) {
  background: var(--color-bg);
}

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

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  transition: var(--transition);
}

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

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-size: 1.125rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   USE CASES - Split Layout
   ============================================ */
.use-cases {
  padding: 0;
  background: var(--color-bg);
}

.use-cases-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 500px;
}

.use-cases-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 100%);
}

.use-cases-image img {
  max-width: 100%;
  max-height: 450px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  filter: brightness(1.05);
}

.use-cases-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.use-cases-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.use-cases-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.use-case-item {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  transition: var(--transition);
}

.use-case-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent);
}

.use-case-item h3 {
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.use-case-item p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   COMING SOON
   ============================================ */
.coming-soon {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-white) 100%);
}

.coming-soon-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.coming-soon-card {
  position: relative;
  opacity: 0.85;
}

.coming-soon-card:hover {
  opacity: 1;
}

.coming-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coming-badge.available {
  background: var(--color-success, #10b981);
}

.coming-soon-card.available {
  opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .hero-logo {
    max-width: 140px;
  }

  .tagline {
    font-size: 1rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-hook {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    max-width: 100%;
  }

  .hero-features {
    gap: 0.75rem;
  }

  .hero-feature {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
  }

  .hero-feature svg {
    width: 16px;
    height: 16px;
  }

  .hero-image {
    padding: 0 2rem 3rem;
  }

  .hero-image img {
    max-height: 350px;
  }

  /* How It Works - stack on tablet */
  .how-it-works-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps-list {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }

  .how-it-works-image {
    order: 2;  /* Image goes below content on mobile */
  }

  .how-it-works-content {
    order: 1;  /* Content comes first on mobile */
  }

  .how-it-works-image img {
    max-width: 400px;
  }

  .use-cases-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .use-cases-image {
    padding: 3rem 2rem;
  }

  .use-cases-content {
    padding: 3rem 2rem;
  }

  .use-cases-content .section-title {
    text-align: center;
  }

  .use-cases-content {
    order: 1;
  }

  .use-cases-image {
    order: 2;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 2.5rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .hero-image img {
    max-height: 280px;
  }

  section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  /* Trust Line - mobile */
  .trust-line {
    padding: 1rem 1.5rem 0;
  }

  .trust-line p {
    font-size: 0.9375rem;
  }

  .trust-badge {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
  }

  /* What You Can Say - mobile */
  .what-you-can-say {
    padding: 3rem 0;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .command-examples {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .command-card {
    padding: 1.25rem;
  }

  .command-text {
    font-size: 1rem;
  }

  /* Value Transition - mobile */
  .value-transition {
    padding: 3rem 0;
  }

  .before-after {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem;
  }

  .before, .after {
    min-width: 100%;
    padding: 1.5rem;
  }

  .transition-arrow {
    transform: rotate(90deg);
  }

  .transition-arrow svg {
    width: 24px;
    height: 24px;
  }

  .transition-tagline {
    font-size: 1rem;
    padding: 0 1.5rem;
  }

  .features-grid,
  .faq-grid,
  .coming-soon-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .steps-grid::before {
    display: none;
  }

  /* How It Works - mobile adjustments */
  .how-it-works {
    padding: 3rem 0;
  }

  .how-it-works-container {
    padding: 0 1.5rem;
    gap: 2rem;
  }

  .section-title-left {
    font-size: 1.5rem;
  }

  .how-it-works-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .steps-list {
    gap: 1.25rem;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .step-info h3 {
    font-size: 1rem;
  }

  .step-info p {
    font-size: 0.875rem;
  }

  .how-it-works-image img {
    max-width: 100%;
  }

  .use-cases-image img {
    max-height: 280px;
  }

  .use-cases-content {
    padding: 2rem 1.5rem;
  }

  .hero-partners {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-grant {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .hero-grant-logo {
    height: 18px;
  }

  .partner-logos {
    gap: 1.5rem;
  }

  .partner-logo img {
    height: 32px;
  }

  .partner-name {
    font-size: 0.75rem;
  }
}
