﻿/* ==============================================
   custom.css — yozo-ai.com
   Clean rewrite — no tooplate overrides, no !important
   NO var() — all values are hardcoded hex
   ============================================== */

/* ============================================
   1. CSS Variables (custom props as fallback
      — kept as comments only since NO var())
   Accent:  #06B6D4  (teal-400)
   Accent2: #0891B2  (teal-600)
   Dark:    #0A0F1E
   Mid:     #0F172A
   Text:    #FFFFFF
   Muted:   #94A3B8
   ============================================ */

/* ============================================
   2. Base — body, typography, links
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background: #0A0F1E;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: #FFFFFF;
}

a {
  color: #0891B2;
  text-decoration: none;
}

a:hover {
  color: #06B6D4;
  text-decoration: none;
}

ul {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  background-color: transparent;
  text-align: left;
  z-index: auto;
}

ul li {
  margin: 0;
}

/* ============================================
   3. Navigation
   ============================================ */
.yz-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 18px 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.yz-navbar.scrolled {
  background: #0A0F1E;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.yz-navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.yz-navbar .brand {
  font-size: 24px;
  font-weight: 700;
  color: #06B6D4;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.yz-navbar .brand sup {
  font-size: 12px;
  font-weight: 300;
  color: #94A3B8;
}

.yz-navbar .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.yz-navbar .nav-links a {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.2s ease;
}

.yz-navbar .nav-links a:hover,
.yz-navbar .nav-links a.active {
  color: #06B6D4;
}

.yz-navbar .nav-cta {
  background: #0891B2;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  transition: background 0.2s ease;
}

.yz-navbar .nav-cta:hover {
  background: #06B6D4;
  color: #FFFFFF;
}

/* Hamburger */
.yz-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.yz-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
}

/* Buttons */
.btn-primary-yz {
  display: inline-block;
  background: #0891B2;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
}

.btn-primary-yz:hover {
  background: #06B6D4;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-ghost-yz {
  display: inline-block;
  background: transparent;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
}

.btn-ghost-yz:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  text-decoration: none;
}

/* ============================================
   4. Hero
   ============================================ */
.yz-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #0A0F1E;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 40px;
}

.yz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.75);
  z-index: 1;
}

.yz-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
}

.yz-hero .hero-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #06B6D4;
  margin-bottom: 20px;
}

.yz-hero h1 {
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.yz-hero .hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: #94A3B8;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.yz-hero .hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.yz-hero .trust-badges {
  margin-top: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #94A3B8;
}

/* ============================================
   5. Stats Bar
   ============================================ */
.yz-stats {
  background: #0F172A;
  padding: 60px 0;
  text-align: center;
}

.yz-stats .stat-item {
  padding: 20px;
}

.yz-stats .stat-number {
  display: inline-block;
  font-size: 52px;
  font-weight: 700;
  color: #06B6D4;
  line-height: 1;
  border-bottom: 3px solid #06B6D4;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.yz-stats .stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #E2E8F0;
}

/* Legacy aliases */
.yz-stat-number {
  color: #06B6D4;
}

.yz-stat-label {
  color: #94A3B8;
}

/* ============================================
   6. Sections
   ============================================ */

/* ===== PAGE HEADER (non-home pages) ===== */
.yz-page-header {
  background: #0A0F1E;
  padding: 120px 0 50px;
  text-align: center;
}
.yz-page-header h1 {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.yz-page-header .hero-sub {
  color: #94A3B8;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}
.yz-section {
  padding: 70px 0;
}

.yz-section-dark {
  background: #0A0F1E;
}

.yz-section-mid {
  background: #0F172A;
}

.yz-section-light {
  background: #F8FAFC;
  color: #334155;
}
.yz-section-light h1, .yz-section-light h2, .yz-section-light h3, .yz-section-light h4 {
  color: #0F172A;
}
.yz-section-light > .container p,
.yz-section-light .col-md-8 p,
.yz-section-light .col-md-6 p {
  color: #475569;
}
.yz-section-light .col-md-8 a,
.yz-section-light .col-md-6 a {
  color: #8B5CF6;
}

.brand-logo { height: 24px !important; width: auto !important; max-height: 24px; vertical-align: middle; margin-right: 4px; }
.footer-brand-logo { height: 20px !important; width: auto !important; max-height: 20px; vertical-align: middle; margin-right: 4px; }

.yz-section .container {
  max-width: 1200px;
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #06B6D4;
  margin-bottom: 14px;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.dark-text {
  color: #1E293B;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: #94A3B8;
  max-width: 560px;
  line-height: 1.7;
}

/* Equal-height card rows */
.row {
  display: flex;
  flex-wrap: wrap;
}

.row::before,
.row::after {
  display: none;
}

/* ============================================
   7. Channel Cards
   ============================================ */
.yz-channel-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.yz-channel-card:hover {
  border-color: #06B6D4;
  transform: translateY(-4px);
}

.yz-channel-card .channel-icon {
  width: 60px;
  height: 60px;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #06B6D4;
}

.yz-channel-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.yz-channel-card p {
  font-size: 14px;
  color: #94A3B8;
  margin: 0;
  flex-grow: 1;
}

.yz-channel-card i {
  color: #06B6D4;
}

/* Feature Tiles */
.yz-feature-row {
  margin-bottom: 40px;
}

.yz-feature-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #06B6D4;
  margin-bottom: 24px;
}

.yz-feature-row h3 {
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.yz-feature-row p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.8;
}

/* ============================================
   8. Flow Cards
   ============================================ */
.yz-flow-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.yz-flow-card:hover {
  border-color: #06B6D4;
  transform: translateY(-4px);
}

.yz-flow-card .flow-icon {
  width: 56px;
  height: 56px;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.yz-flow-card .flow-icon i {
  font-size: 22px;
  color: #06B6D4;
}

.yz-flow-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.yz-flow-card p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.8;
  flex-grow: 1;
  margin: 0 0 16px;
}

.yz-flow-card .flow-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #06B6D4;
  margin-top: auto;
}

/* ============================================
   9. Comparison Table
   ============================================ */
.yz-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.yz-compare-table th {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.yz-compare-table th.yozo-col {
  color: #06B6D4;
  background: rgba(6, 182, 212, 0.08);
}

.yz-compare-table th.agency-col {
  color: #94A3B8;
}

.yz-compare-table td {
  padding: 14px 24px;
  font-size: 14px;
  color: #94A3B8;
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.yz-compare-table td.yozo-col {
  color: #FFFFFF;
  background: rgba(6, 182, 212, 0.06);
  font-weight: 500;
}

.yz-compare-table .check {
  color: #10B981;
  font-weight: 700;
}

.yz-compare-table .row-label {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   10. Testimonials
   ============================================ */
.yz-testimonial-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.yz-testimonial-card .quote {
  font-size: 15px;
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

.yz-testimonial-card .author-name {
  font-weight: 700;
  font-size: 14px;
  color: #06B6D4;
}

.yz-testimonial-card .author-role {
  font-size: 13px;
  color: #94A3B8;
  margin-top: 4px;
}

.yz-testimonial-card .industry-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(6, 182, 212, 0.15);
  color: #06B6D4;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Banner */
.yz-cta-banner {
  background: #0891B2;
  padding: 80px 0;
  text-align: center;
}

.yz-cta-banner h2 {
  font-size: 38px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.yz-cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 32px;
  max-width: 520px;
}

.yz-cta-banner .btn-white {
  display: inline-block;
  background: #FFFFFF;
  color: #0891B2;
  padding: 14px 32px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.yz-cta-banner .btn-white:hover {
  background: #0A0F1E;
  color: #FFFFFF;
}

/* ============================================
   11. FAQ Accordion
   ============================================ */
.yz-faq .faq-item {
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.yz-faq .faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #FFFFFF;
  text-align: left;
  padding: 22px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.yz-faq .faq-question .faq-icon {
  color: #06B6D4;
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.yz-faq .faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.yz-faq .faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.8;
}

.yz-faq .faq-item.open .faq-answer {
  display: block;
}

/* ============================================
   12. Blog Cards
   ============================================ */
.yz-blog-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.yz-blog-card:hover {
  border-color: #06B6D4;
  transform: translateY(-4px);
}

.yz-blog-card .card-img {
  width: 100%;
  height: 200px;
  background: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #06B6D4;
}

.yz-blog-card .card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.yz-blog-card .category-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(6, 182, 212, 0.15);
  color: #06B6D4;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.yz-blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.4;
}

.yz-blog-card p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.yz-blog-card .meta {
  font-size: 12px;
  color: #94A3B8;
  display: flex;
  gap: 14px;
  margin-top: auto;
}

/* Blog Filter Tabs */
.yz-filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.yz-filter-tabs .tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #94A3B8;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s ease, color 0.2s ease;
}

.yz-filter-tabs .tab.active,
.yz-filter-tabs .tab:hover {
  background: #06B6D4;
  color: #FFFFFF;
  border-color: #06B6D4;
}

/* ============================================
   13. Team Page
   ============================================ */

/* CEO Featured Card */
.yz-ceo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(6, 182, 212, 0.4);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}

.yz-section-light .yz-ceo-card {
  background: #f0f9fc;
  border-color: rgba(6, 182, 212, 0.3);
}

.yz-ceo-name {
  font-size: 28px;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 8px;
}

.yz-ceo-title {
  font-size: 14px;
  font-weight: 700;
  color: #0891B2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.yz-ceo-location {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 20px;
}

.yz-ceo-location i {
  color: #06B6D4;
  margin-right: 4px;
}

.yz-ceo-bio {
  font-size: 15px;
  color: #334155;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 24px;
}

.yz-ceo-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0891B2;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.yz-ceo-linkedin:hover {
  color: #06B6D4;
}

/* Team Card */
.yz-team-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 32px 20px;
}

.yz-team-card:hover {
  border-color: #06B6D4;
  transform: translateY(-4px);
}

.yz-team-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  margin: 24px auto 0;
}

.yz-team-card .card-body {
  padding: 24px;
}

.yz-team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.yz-team-card .role {
  font-size: 13px;
  color: #06B6D4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.yz-team-card .location {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 12px;
}

.yz-team-card .linkedin-link {
  font-size: 18px;
  color: #94A3B8;
  transition: color 0.2s ease;
}

.yz-team-card .linkedin-link:hover {
  color: #06B6D4;
}

/* Team avatar zones */
.yz-team-avatar-zone {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.yz-initial {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.yz-initial.yz-initial-accent {
  background-color: #06B6D4;
}

.yz-initial.yz-initial-dark {
  background-color: #1E293B;
}

.yz-team-name-zone {
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yz-team-name-zone h4 {
  font-size: 17px;
  font-weight: 700;
  color: #F1F5F9;
  margin: 0;
}

.yz-team-role-zone {
  height: 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yz-team-role-zone .role {
  font-size: 13px;
  font-weight: 600;
  color: #06B6D4;
  margin: 0;
}

.yz-team-location-zone {
  height: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yz-team-location-zone .location {
  font-size: 12px;
  color: #94A3B8;
  margin: 0;
}

.yz-team-footer-zone {
  margin-top: auto;
  padding-top: 16px;
}

/* Hiring Banner */
.yz-hiring-banner {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 12px;
  padding: 36px 30px;
  text-align: center;
  margin-top: 60px;
}

.yz-hiring-banner h3 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.yz-hiring-banner p {
  color: #94A3B8;
  margin-bottom: 24px;
}

/* ============================================
   14. Contact Form
   ============================================ */
.yz-contact-form .form-group {
  margin-bottom: 20px;
}

.yz-contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
  margin-bottom: 8px;
}

.yz-contact-form input,
.yz-contact-form textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.yz-contact-form input:focus,
.yz-contact-form textarea:focus {
  border-color: #06B6D4;
}

.yz-contact-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.yz-contact-info {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 36px 30px;
}

.yz-contact-info .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.yz-contact-info .info-item i {
  color: #06B6D4;
  font-size: 18px;
  margin-top: 2px;
}

.yz-contact-info .info-item p {
  font-size: 14px;
  color: #94A3B8;
  margin: 0;
}

.yz-contact-info .info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* ============================================
   15. Footer
   ============================================ */
.yz-footer {
  background: #0F172A;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.yz-footer .footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #06B6D4;
}

.yz-footer .footer-brand sup {
  font-size: 11px;
  font-weight: 300;
  color: #94A3B8;
}

.yz-footer .footer-desc {
  font-size: 14px;
  color: #94A3B8;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}

.yz-footer .footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.yz-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.yz-footer .footer-links li {
  margin-bottom: 10px;
}

.yz-footer .footer-links a {
  font-size: 14px;
  color: #94A3B8;
  transition: color 0.2s ease;
}

.yz-footer .footer-links a:hover {
  color: #06B6D4;
}

.yz-footer .social-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.yz-footer .social-links a {
  width: 36px;
  height: 36px;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06B6D4;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.yz-footer .social-links a:hover {
  background: #06B6D4;
  color: #FFFFFF;
}

.yz-footer .footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(6, 182, 212, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.yz-footer .footer-bottom p {
  font-size: 13px;
  color: #94A3B8;
  margin: 0;
}

.yz-footer .footer-bottom a {
  font-size: 13px;
  color: #94A3B8;
}

.yz-footer .footer-bottom a:hover {
  color: #06B6D4;
}

/* ============================================
   16. Cookie Banner
   ============================================ */
.yz-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0F172A;
  border-top: 1px solid rgba(6, 182, 212, 0.3);
  z-index: 10000;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.yz-cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: #94A3B8;
  flex: 1;
}

.yz-cookie-banner a {
  color: #06B6D4;
}

.yz-cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.yz-cookie-banner .btn-accept {
  background: #0891B2;
  color: #FFFFFF;
  border: none;
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.yz-cookie-banner .btn-accept:hover {
  background: #06B6D4;
}

.yz-cookie-banner .btn-decline {
  background: transparent;
  color: #94A3B8;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.yz-cookie-banner .btn-decline:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* ============================================
   17. Article Pages
   ============================================ */
.article-layout,
.article-container,
.article-content,
.blog-article,
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.article-body p,
.article-content p,
.post-content p,
.blog-article p {
  color: #444444;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-body h2,
.article-content h2,
.post-content h2 {
  color: #222222;
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 16px;
}

.article-body h3,
.article-content h3,
.post-content h3 {
  color: #333333;
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.article-body ul,
.article-body ol,
.article-content ul,
.article-content ol {
  color: #444444;
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-body li,
.article-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Legal Pages */
.yz-legal {
  background: #F8FAFC;
  padding: 120px 0 80px;
}

.yz-legal h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 10px;
}

.yz-legal .lead {
  color: #64748B;
  font-size: 16px;
}

.yz-legal h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
  margin: 36px 0 14px;
}

.yz-legal p,
.yz-legal li {
  font-size: 15px;
  color: #334155;
  line-height: 1.8;
}

.yz-legal ul {
  padding-left: 20px;
}

/* ============================================
   18. Responsive
   ============================================ */
@media (max-width: 992px) {
  .section-title {
    font-size: 34px;
  }

  .yz-hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .yz-navbar .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0A0F1E;
    flex-direction: column;
    padding: 20px 30px;
    gap: 18px;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
  }

  .yz-navbar .nav-links.open {
    display: flex;
  }

  .yz-burger {
    display: flex;
  }

  .yz-hero h1 {
    font-size: 36px;
  }

  .yz-hero .hero-sub {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .yz-stats .stat-number {
    font-size: 40px;
  }

  .yz-ceo-card {
    padding: 32px 24px;
  }

  .yz-ceo-teaser {
    flex-direction: column;
    text-align: center;
  }

  .yz-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .yz-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .yz-hero h1 {
    font-size: 28px;
  }

  .yz-hero .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .yz-stats .stat-number {
    font-size: 32px;
  }
}

/* ============================================
   Misc Utilities
   ============================================ */
.text-accent     { color: #06B6D4; }
.text-muted-yz   { color: #94A3B8; }
.text-success-yz { color: #10B981; }
.mt-60 { margin-top: 60px; }
.mb-60 { margin-bottom: 60px; }

.img-placeholder {
  background: rgba(15, 23, 42, 0.6);
  border: 2px dashed rgba(6, 182, 212, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 14px;
}

/* Generic card */
.yz-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.yz-card:hover {
  border-color: #06B6D4;
  transform: translateY(-4px);
}

/* Values / Mission */
.yz-value-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
}

.yz-value-card .value-icon {
  font-size: 36px;
  color: #06B6D4;
  margin-bottom: 18px;
}

.yz-value-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.yz-value-card p {
  font-size: 14px;
  color: #94A3B8;
}

/* How It Works */
.yz-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.yz-step .step-num {
  width: 52px;
  height: 52px;
  background: #0891B2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.yz-step h4 {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.yz-step p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0;
}

/* VC Badge */
.yz-vc-badge {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 36px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.yz-vc-badge .vc-logo-placeholder {
  width: 80px;
  height: 80px;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #06B6D4;
  flex-shrink: 0;
}

.yz-vc-badge h4 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.yz-vc-badge p {
  font-size: 14px;
  color: #94A3B8;
  margin: 0;
}

/* CEO Quote teaser */
.yz-ceo-teaser {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.yz-ceo-teaser .ceo-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 3px solid rgba(6, 182, 212, 0.4);
}

.yz-ceo-teaser blockquote {
  font-size: 16px;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.8;
  margin: 0 0 14px;
  border: none;
  padding: 0;
}

.yz-ceo-teaser .ceo-name {
  font-weight: 700;
  color: #06B6D4;
  font-size: 15px;
}

.yz-ceo-teaser .ceo-title {
  color: #94A3B8;
  font-size: 13px;
}

/* Integrations Strip */
.yz-integrations {
  background: #0F172A;
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid rgba(6, 182, 212, 0.1);
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.yz-integrations .int-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #94A3B8;
  margin-bottom: 30px;
}

.yz-integrations .int-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 20px;
  color: #94A3B8;
  font-size: 13px;
  font-weight: 600;
}

.yz-integrations .int-item i {
  font-size: 30px;
  color: #06B6D4;
}

/* Product feature cards */
.yz-product-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.yz-product-card:hover {
  border-color: #06B6D4;
  transform: translateY(-4px);
}

.yz-product-card .prod-icon {
  font-size: 32px;
  color: #06B6D4;
  margin-bottom: 20px;
}

.yz-product-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.yz-product-card p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0;
}

.yz-product-card .screenshot-mock {
  margin-top: 20px;
  height: 120px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #94A3B8;
}

/* Scroll fade-in — visible by default, JS adds animation */
.fade-in {
  opacity: 1;
  transform: none;
}

.fade-in.animated {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.animated.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section icons */
.yz-section i.fa,
.yz-section i.fas,
.yz-section i.far,
.yz-section i.fab {
  color: #06B6D4;
}


/* ===== BLOG CARD TEXT FIX ===== */
.yz-blog-card .blog-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.yz-blog-card .blog-date {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 8px;
}
.yz-blog-card h3 { font-size: 18px; font-weight: 600; color: #FFFFFF; margin-bottom: 12px; line-height: 1.4; }
.yz-blog-card h3 a { color: #FFFFFF; text-decoration: none; }
.yz-blog-card h3 a:hover { color: #06B6D4; }
.yz-blog-card .blog-card-body > p { font-size: 15px; color: #94A3B8; line-height: 1.7; margin-bottom: 16px; flex-grow: 1; }
.yz-blog-card .read-more { color: #8B5CF6; font-size: 14px; font-weight: 600; text-decoration: none; }
.yz-blog-card .read-more:hover { color: #A78BFA; }
