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

body {
  font-family: var(--font-base);
  color: var(--sovi-dark);
  background-color: var(--sovi-white);
  line-height: 1.5;
}

/* ------------------------------------- */
/* Layout & Utility Classes              */
/* ------------------------------------- */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

.section {
  padding: 120px 0;
}

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

.section-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: var(--text-xl);
  color: #666666;
  margin-bottom: var(--spacing-xl);
}

.card {
  background-color: var(--sovi-white);
  border: 1px solid var(--sovi-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
}

.card-hover {
  transition: var(--transition-base);
}

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

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sovi-purple);
  color: var(--sovi-white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--sovi-border);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-base);
  white-space: nowrap;
}

.button-primary:hover {
  opacity: 0.9;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sovi-white);
  color: var(--sovi-dark);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid #EBEBEB;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-base);
  white-space: nowrap;
}

.button-secondary:hover {
  background-color: var(--sovi-bg-soft);
  border-color: var(--sovi-purple);
  color: var(--sovi-purple);
}

.badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  background-color: var(--sovi-bg-soft);
  color: var(--sovi-purple);
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------- */
/* Hero Section                          */
/* ------------------------------------- */

.hero-section {
  background-color: var(--sovi-white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

/* Background Blobs for soft gradient effect */
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(140, 85, 242, 0.15);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(140, 85, 242, 0.08);
  bottom: 100px;
  left: -200px;
}

/* Hero Nav */
.hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  padding-top: 16px;
  position: relative;
  z-index: 10;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--sovi-dark);
}

.logo-icon {
  background-color: var(--sovi-purple);
  color: var(--sovi-white);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
}

/* Hero Main */
.hero-main {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 0;
  min-height: 380px;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--sovi-dark);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  max-width: 560px;
}

.hero-description {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 24px;
  max-width: 560px;
  line-height: 1.5;
}

.hero-brand-statements {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 32px;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.statement-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.statement-check {
  color: var(--sovi-purple);
  display: flex;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
}

/* Hero Visuals */
.hero-visuals {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-img {
  width: 110%;
  max-width: 900px;
  height: auto;
  display: block;
  transform: translateX(5%);
}

/* Stats Bar */
.hero-stats-wrapper {
  margin-top: -28px;
  padding-bottom: 20px;
  position: relative;
  z-index: 10;
}

.stats-bar {
  display: flex;
  justify-content: space-between;
  padding: 24px 40px;
  align-items: center;
  border-radius: 24px;
  background-color: var(--sovi-white);
  box-shadow: 0 10px 40px rgba(140, 85, 242, 0.08);
  border: 1px solid rgba(232, 221, 252, 0.5);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--sovi-border);
  opacity: 0.7;
}

.stat-icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: var(--sovi-bg-soft);
  color: var(--sovi-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sovi-purple);
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sovi-dark);
  margin-bottom: 2px;
}

.stat-sub {
  font-size: 0.8rem;
  color: #666;
}


/* ------------------------------------- */
/* ------------------------------------- */
/* ------------------------------------- */
/* ------------------------------------- */
/* ------------------------------------- */
/* ------------------------------------- */


/* ------------------------------------- */
/* About Sovi Section                    */
/* ------------------------------------- */

.about-section {
  text-align: center;
  background-color: var(--sovi-white);
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1040px;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-3xl);
}

.about-badge {
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.05em;
}

.about-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: var(--spacing-xl);
  color: var(--sovi-dark);
}

.about-title .text-purple {
  color: var(--sovi-purple);
}

.about-description {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.6;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.about-description p {
  margin-bottom: var(--spacing-xl);
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* Journey Section Container */
.journey-container {
  width: 100%;
  max-width: 1400px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
}

.journey-header {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-3xl); /* Match about-header margin (usually 64px) */
}

.journey-title {
  font-size: 56px;
  font-weight: 800;
  color: var(--sovi-dark);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.journey-title .text-purple {
  color: var(--sovi-purple);
}

.journey-timeline-container {
  width: 100%;
  max-width: 1400px;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 280px; /* Increased slightly for extra desc wrap height */
}

.journey-road-bg {
  width: 100%;
  height: auto;
  display: block;
}

.timeline-nodes-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.timeline-node {
  position: absolute;
  top: 100%;
  margin-top: 16px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 15%; /* Restrict width relative to container to ensure gaps */
  max-width: 190px; /* Hard limit to prevent any overlap */
  pointer-events: auto;
}

.t-connector {
  width: 2px;
  height: 32px; /* Defines the 24-32px spacing between road and icon */
  background: linear-gradient(to bottom, var(--sovi-purple), transparent);
  opacity: 0.6;
  margin-bottom: 8px; /* Extra breathing room before icon */
}

.t-icon-wrapper {
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(140, 85, 242, 0.12), 0 2px 8px rgba(140, 85, 242, 0.04);
  color: var(--sovi-purple);
  margin-bottom: 20px;
  border: 1px solid rgba(140, 85, 242, 0.05);
}

.t-date {
  font-size: 14px;
  font-weight: 700;
  color: var(--sovi-purple);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.t-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--sovi-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.t-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Recreated Stats Bar in HTML */
.journey-stats-html {
  width: 100%;
  max-width: 1400px;
  background-color: #F8F9FA;
  border-radius: 20px;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.j-stat-item {
  display: flex;
  align-items: center;
}

.j-stat-icon {
  width: 48px;
  height: 48px;
  background-color: #EFE8FE; /* light purple from design */
  color: var(--sovi-purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.j-stat-icon svg {
  width: 24px;
  height: 24px;
}

.j-stat-text {
  display: flex;
  flex-direction: column;
}

.j-stat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--sovi-dark);
  margin-bottom: 4px;
}

.j-stat-desc {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.j-stat-divider {
  width: 1px;
  height: 48px;
  background-color: #E0E0E0;
  margin: 0 20px;
}

.about-visual {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.about-illustration {
  width: 100%;
  height: auto;
  display: block;
}


.text-purple {
  color: var(--sovi-purple);
}

/* =========================================
   KEY MESSAGING SECTION
========================================= */

#key-messaging {
    overflow: hidden;
}

.key-messaging-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    max-width: 1400px;
}

/* Hero Composition */
.km-hero-composition {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    background-color: var(--sovi-white);
}

.km-connection-line {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.km-header-text {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 680px;
    padding: 0 40px;
}

.km-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--sovi-black);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.km-subtitle {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.6;
}

/* The Art wrappers */
.km-art {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.km-art-left {
    left: 0;
    justify-content: flex-end;
    background: radial-gradient(ellipse 100% 100% at 0% 50%, rgba(235, 224, 255, 0.6) 0%, rgba(244, 237, 255, 0) 80%);
    -webkit-mask-image: radial-gradient(ellipse 120% 150% at 100% 50%, transparent 20%, black 50%);
    mask-image: radial-gradient(ellipse 120% 150% at 100% 50%, transparent 20%, black 50%);
}

.km-art-right {
    right: 0;
    justify-content: flex-start;
    background: radial-gradient(ellipse 100% 100% at 100% 50%, rgba(235, 224, 255, 0.6) 0%, rgba(244, 237, 255, 0) 80%);
    -webkit-mask-image: radial-gradient(ellipse 120% 150% at 0% 50%, transparent 20%, black 50%);
    mask-image: radial-gradient(ellipse 120% 150% at 0% 50%, transparent 20%, black 50%);
}

.km-art img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.km-art-left img {
    transform: translateX(10%);
}

.km-art-right img {
    transform: translateX(-10%);
}

/* Messages Card */
.km-messages-card {
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: none;
}

.km-messages-card .km-card-title {
    padding: 0 var(--spacing-md);
}

.km-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
}

.km-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid var(--sovi-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: var(--sovi-white);
}

.km-item {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-xl);
    border-right: 1px solid var(--sovi-border);
}

.km-item:last-child {
    border-right: none;
}

.km-item:nth-child(odd) {
    background-color: var(--sovi-white);
}

.km-item:nth-child(even) {
    background-color: #fcfbff;
}

.km-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--sovi-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sovi-purple);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(108, 64, 255, 0.1);
}

.km-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sovi-black);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.km-item-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

/* Bottom Row */
.km-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.km-pitch-card, .km-short-card {
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    background-color: var(--sovi-white);
    border: 1px solid var(--sovi-border);
}

.km-quote-icon {
    margin-bottom: var(--spacing-md);
}

.km-pitch-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sovi-black);
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
}

.km-pitch-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Copy List */
.km-copy-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.km-copy-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f8f6ff;
    border-radius: var(--radius-md);
}

.km-copy-item:last-child {
    border-bottom: none;
}

.km-copy-text {
    font-size: 0.9375rem;
    color: #444;
}

.km-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--sovi-border);
    color: var(--sovi-purple);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.km-copy-btn:hover {
    background-color: rgba(108, 64, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .km-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .km-header-row {
        flex-direction: column;
    }
    .km-header-illustration-left,
    .km-header-illustration-right {
        justify-content: center;
        margin-top: var(--spacing-lg);
    }
    .km-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .km-bottom-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .km-grid {
        grid-template-columns: 1fr;
    }
.km-copy-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f8f6ff;
    border-radius: var(--radius-md);
}
    .km-copy-btn {
        align-self: flex-start;
        padding-left: 0;
    }
}

/* =========================================
   PRODUCT SCREENS SECTION
========================================= */

.ps-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    max-width: 1400px;
}

.ps-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
}

.ps-header-text {
    flex: 1;
    max-width: 600px;
}

.ps-header-illustration {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.ps-header-illustration img {
    max-width: 100%;
    height: auto;
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: var(--spacing-xl);
}

.ps-card {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-2xl);
}

.ps-card-app, .ps-card-web {
    background-color: var(--sovi-white);
}

.ps-card-pamphlet {
    background-color: #f8f6ff;
    border: none;
}

.ps-card-header {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.ps-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f0ebff;
    color: var(--sovi-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ps-card-title-area h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ps-card-title-area p {
    font-size: 0.875rem;
    color: #666;
}

.ps-image-container {
    margin-bottom: var(--spacing-xl);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ps-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.ps-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: #555;
}

.ps-tag-pill svg {
    color: var(--sovi-purple);
}

.ps-tag-more {
    background-color: transparent;
    color: #888;
}

.ps-download-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background-color: #f8f8f8;
    border-radius: var(--radius-lg);
}

.ps-app-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.ps-app-icon {
    width: 40px;
    height: 40px;
    background-color: var(--sovi-purple);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.web-icon {
    background-color: transparent;
    color: var(--sovi-purple);
    border: 1px solid var(--sovi-border);
}

.ps-app-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.ps-app-desc {
    font-size: 0.75rem;
    color: #666;
}

.ps-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    text-decoration: none;
}

.ps-store-btn svg:first-child {
    width: 100px;
    height: 32px;
}

.ps-store-btn .ps-arrow {
    color: var(--sovi-purple);
    width: 16px;
    height: 16px;
}

/* Pamphlet card specifics */
.ps-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--sovi-purple);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    align-self: flex-start;
}

.ps-pamphlet-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.ps-pamphlet-desc {
    font-size: 0.875rem;
    color: #555;
    margin-bottom: var(--spacing-xl);
}

.ps-pamphlet-image {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.ps-pamphlet-image img {
    max-width: 100%;
}

.ps-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.ps-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #444;
}

.ps-pamphlet-btn {
    width: 100%;
    justify-content: center;
}

/* Bottom Banner */
.ps-bottom-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f6ff;
    padding: var(--spacing-xl) var(--spacing-2xl);
    border-radius: var(--radius-xl);
}

.ps-banner-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.ps-banner-icon {
    width: 64px;
    height: 64px;
    background-color: var(--sovi-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-banner-icon svg {
    width: 32px;
    height: 32px;
}

.ps-banner-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--sovi-purple);
}

.ps-banner-text p {
    color: #555;
    margin: 0;
}

@media (max-width: 1200px) {
    .ps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ps-card-pamphlet {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .ps-header-row {
        flex-direction: column;
    }
    .ps-grid {
        grid-template-columns: 1fr;
    }
    .ps-bottom-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xl);
    }
    .ps-banner-left {
        flex-direction: column;
    }
}

/* =========================================
   FOUNDER QUOTE SECTION
========================================= */

.fq-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    max-width: 1200px;
    padding-bottom: 80px;
}

.fq-header-text {
    max-width: 600px;
}

.fq-main-grid {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.fq-quote-card {
    flex: 1.5;
    background-color: var(--sovi-white);
    padding: 60px 40px;
    position: relative;
    border-radius: var(--radius-xl);
}

.fq-quote-mark {
    position: absolute;
    opacity: 0.2;
}

.fq-quote-start {
    top: 20px;
    left: 20px;
}

.fq-quote-end {
    bottom: 20px;
    right: 20px;
}

.fq-quote-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.fq-quote-content p:last-child {
    margin-bottom: 0;
}

.fq-founder-profile {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fq-founder-profile img {
    max-width: 100%;
    height: auto;
}

.fq-bottom-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.fq-link-card {
    display: flex;
    gap: var(--spacing-md);
    background-color: var(--sovi-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
}

.fq-link-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f8f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fq-link-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.fq-link-text p {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.fq-link-text a {
    color: var(--sovi-purple);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.fq-link-text a:hover {
    text-decoration: underline;
}

.fq-footer {
    text-align: center;
    color: #666;
    font-size: 0.9375rem;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--sovi-border);
}

@media (max-width: 992px) {
    .fq-main-grid {
        flex-direction: column;
    }
    .fq-bottom-links {
        grid-template-columns: 1fr;
    }
}

/* --- NEW JOURNEY TIMELINE STYLES --- */



/* Hero Section */





/* Timeline Section */












/* Responsive Adjustments */
@media (max-width: 1024px) {
  .title {
    font-size: 2.5rem;
    white-space: normal;
  }
  .cards-container {
    overflow-x: auto;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
    align-items: stretch;
  }
  .timeline-item {
    min-width: 280px;
    scroll-snap-align: center;
  }
}

/* Connector Line */
.connector-wrapper {
  margin-top: 75px; /* ~2cm */
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: visible;
  padding: 0 20px;
  box-sizing: border-box;
}

.timeline-nodes-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: auto;
  overflow: visible;
}

.timeline-nodes-container svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Node Markers */
.node-marker {
  position: absolute;
  transform: translate(-50%, -50%); /* Center the marker exactly on the line point */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

/* Puts the card above the line */
.node-icon-card {
  position: absolute;
  bottom: 14px; /* Lift above the dot */
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background-color: #FFFFFF; /* Solid white like reference */
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(140, 85, 242, 0.15), 0 4px 10px rgba(140, 85, 242, 0.05); /* Soft, wide purple shadow */
}

/* Map pin tail pointing down from the card */
.node-icon-card::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #FFFFFF; /* White triangle pointing down */
}

/* The faint vertical line connecting pin to the dot */
.node-icon-card::after {
  content: '';
  position: absolute;
  bottom: -14px; /* Bridge the gap */
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 8px;
  background: rgba(140, 85, 242, 0.3);
}

.node-icon-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.node-date {
  position: absolute;
  bottom: -32px; /* Align all dates horizontally below the timeline curve */
  transform: translateX(-50%);
  font-size: 0.875rem; /* Increased by one step */
  font-weight: 800; /* Made bolder */
  color: var(--sovi-purple);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Content Grid Below Timeline */
.content-grid-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* Make all boxes equal height */
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 60px; /* Space below the curve and dates */
  padding: 0 20px;
  box-sizing: border-box;
}

.content-box {
  flex: 1; /* Equal width for all boxes */
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(140, 85, 242, 0.04);
}

/* Progressive Background Colors (White to Purple) */
.box-1 { 
  background-color: rgba(255, 255, 255, 0.85); 
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), 0 10px 30px rgba(140, 85, 242, 0.04);
}
.box-2 { 
  background-color: rgba(250, 245, 255, 0.85); 
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 10px 30px rgba(140, 85, 242, 0.04);
}
.box-3 { 
  background-color: rgba(242, 232, 255, 0.85); 
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 10px 30px rgba(140, 85, 242, 0.04);
}
.box-4 { 
  background-color: rgba(232, 215, 255, 0.85); 
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 10px 30px rgba(140, 85, 242, 0.04);
}
.box-5 { 
  background-color: rgba(220, 195, 255, 0.85); 
  box-shadow: inset 0 0 0 1px rgba(140, 85, 242, 0.1), 0 10px 30px rgba(140, 85, 242, 0.04);
}

/* Content Box Typography */
.c-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sovi-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.c-desc {
  font-size: 0.875rem;
  color: var(--sovi-gray);
  line-height: 1.6;
  margin: 0;
}

.c-desc strong {
  font-weight: 600;
}

.c-desc .purple-strong {
  color: var(--sovi-purple);
}

.c-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sovi-purple);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.c-watermark {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 0.1; /* Adjusted for solid circle */
  pointer-events: none;
}

/* Make content box relative for the absolute watermark */
.content-box {
  position: relative;
  flex: 1; /* Equal width for all boxes */
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(140, 85, 242, 0.04);
  overflow: hidden; /* Keep watermark inside */
}

/* Responsive Adjustments for Content Grid */
@media (max-width: 1024px) {
  .content-grid-container {
    overflow-x: auto;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
  }
  .content-box {
    min-width: 260px;
    scroll-snap-align: center;
  }
}

/* Stats Section */
.stats-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 16px 48px;
  box-shadow: 0 4px 20px rgba(140, 85, 242, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}

.stat-icon-wrapper {
  color: var(--sovi-purple);
  display: flex;
  align-items: center;
}

.stat-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sovi-purple);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--sovi-gray);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(140, 85, 242, 0.15);
}

/* Trust Section */



