/* ================================
   LIORA TECHNOLOGIES - MAIN STYLES
   Brand Colors: #1B1F75 (Liora Blue), #FFFFFF (White), #4C56A3 (Accent)
   ================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1B1F75;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.625rem; }

p { margin-bottom: 1rem; }

a {
    color: #1B1F75;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #15195F;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}
.lead-white{
    font-size: 1.125rem;
    line-height: 1.7;
    color: #fff;
    
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #EAEAEA;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-link {
    display: block;
}

.logo {
    height: 48px;
    width: auto;
}

.main-nav {
    position: relative;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #1B1F75;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    font-weight: 600;
    color: #333;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1B1F75;
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.active {
    color: #1B1F75;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;       /* behaves like inline, does NOT stretch full width */
    align-items: center;
    justify-content: center;
    padding: 0 2.4rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    /* no fixed height here */
}





.btn-primary {
    background: #1B1F75;
    color: #FFFFFF;
    border-color: #1B1F75;
}

.btn-primary:hover {
    background: #15195F;
    border-color: #15195F;
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: #1B1F75;
    border-color: #1B1F75;
}

.btn-secondary:hover {
    background: #1B1F75;
    color: #FFFFFF;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 31, 117, 0.85) 0%, rgba(76, 86, 163, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1rem 0 3.5rem; /* top | left/right | bottom */
}


.hero-logo {
    max-width: 300px;
    margin: 0 auto 2rem;
}

.hero h1 {
    color: #FFFFFF;
    font-size: 2.75rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ensure all CTA buttons align vertically */
.hero-ctas a {
    display: flex;
    align-items: center;
    justify-content: center;   /* ← ADD THIS */
    height: 72px;
}



/* LIXTE CTA Button */

/* Apply white borders to all hero CTA buttons */
.hero .btn-primary,
.hero .btn-secondary,
.lixte-cta img {
    border: 2px solid #FFFFFF;
}


.lixte-cta img {
    height: 100%;      /* fills the 72px height of the parent */
    width: auto;
    display: block;
    border-radius: 6px;
    border: 2px solid #FFFFFF;  /* added in Step 4 */
    transition: transform 0.25s ease, opacity 0.25s ease;
}



.lixte-cta:hover img {
    transform: translateY(-2px);
    opacity: 0.9;
}



.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.hero .btn-secondary:hover {
    background: #FFFFFF;
    color: #1B1F75;
}

/* ------------------------------
   Hero Video Grid
------------------------------ */
.hero-videos-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1rem 1rem;
}

/* Center single video when CNBC block is disabled */
.hero-videos-container.single-video {
  grid-template-columns: 1fr;     /* collapse to 1 column */
  justify-items: center;          /* center the video */
}

/* On desktop, make single video a bit smaller so CTAs stay above the fold */
@media (min-width: 969px) {
  .hero-videos-container.single-video {
    max-width: 800px;        /* was 1100px */
    padding: 0.5rem 1rem 1rem;
  }
}


.hero-video-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero-video-wrapper:hover {
  transform: scale(1.02);
}

.hero-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
}

/* Ensure LiGHT thumbnail shows full logo without cropping */
.hero-video-thumbnail.hero-video-light {
  object-fit: contain;
  background-color: #ffffff; /* optional, keeps bars white if any */
}



.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ------------------------------
   Popup Modal
------------------------------ */
.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.25s ease;
}

.video-popup-content {
  position: relative;
  max-width: 90%;
  width: 800px;
  background: #000;
  border-radius: 0.5rem;
  overflow: hidden;
}

.popup-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

/* Placeholder (thumbnail) in popup */
.popup-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: contain; /* makes image fill container like background-size: cover */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
}

/* Play button inside popup */
.popup-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}

.popup-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* The video element inside popup */
.video-popup video {
  width: 100%;
  height: 100%;
  display: none; /* hidden until play is clicked */
  position: relative;
  z-index: 3;
}

/* Close button */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s ease;
}

.close-popup:hover {
  opacity: 0.7;
}

/* ------------------------------
   Responsive Adjustments
------------------------------ */
@media (max-width: 768px) {
  .hero-videos-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .video-popup-content {
    width: 95%;
  }
}

/* ------------------------------
   Animations
------------------------------ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #1B1F75 0%, #4C56A3 100%);
    color: #FFFFFF;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    color: #FFFFFF;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1B1F75;
}

/* ===== PROOF SECTION ===== */
.proof-section {
    background: #F9F9FC;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.proof-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 31, 117, 0.15);
}

.proof-icon {
    margin: 0 auto 1.5rem;
    width: 48px;
    height: 48px;
}

.proof-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1B1F75;
}

.proof-card p {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: #FFFFFF;
}

.works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.works-text h2 {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1B1F75;
    font-weight: bold;
}

.feature-list strong {
    color: #1B1F75;
}

.works-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ===== MARKET SECTION ===== */
.market-section {
    background: linear-gradient(135deg, #1B1F75 0%, #4C56A3 100%);
    color: #FFFFFF;
}

.market-section .section-title {
    color: #FFFFFF;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.market-cta {
    text-align: center;
    margin-top: 3rem;
}

.market-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.market-cta .btn-primary {
    background: #FFFFFF;
    color: #1B1F75;
    border-color: #FFFFFF;
}

.market-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ===== TECHNOLOGY PAGE ===== */
.tech-section {
    background: #FFFFFF;
}
.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.tech-image img {
    height: 100%;
    object-fit: cover;
}

.tech-text h2 {
    margin-bottom: 1.5rem;
}

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

.component-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #1B1F75;
}

.component-card h4 {
    margin-bottom: 1rem;
    color: #1B1F75;
}

.innovation-section {
    background: #FFFFFF;
}
.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.innovation-image img {
    height: 100%;
    object-fit: cover;
}

.innovation-text h2 {
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1B1F75;
    font-weight: bold;
    font-size: 1.25rem;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    background: #F9F9FC;
}

.comparison-table-wrapper {
    overflow-x: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    min-width: 600px;
}

.comparison-table thead {
    background: #1B1F75;
    color: #FFFFFF;
}

.comparison-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table th.highlight-col {
    background: #4C56A3;
}

.comparison-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #EAEAEA;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td.highlight-col {
    background: rgba(76, 86, 163, 0.05);
    font-weight: 600;
    color: #1B1F75;
}

/* ===== CLINICAL SECTION ===== */
.clinical-section {
    background: #FFFFFF;
}

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

.clinical-card {
    background: #F9F9FC;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #1B1F75;
}

.clinical-highlight {
    background: linear-gradient(135deg, rgba(27, 31, 117, 0.05) 0%, rgba(76, 86, 163, 0.05) 100%);
    border-top-color: #4C56A3;
}

.clinical-card h3 {
    margin-bottom: 1rem;
}

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
    background: #F9F9FC;
}

.roadmap-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #555;
}

.roadmap-image-wrapper {
    max-width: 100%;
    margin: 0 auto 3rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.roadmap-image-wrapper img {
    width: 100%;
}

.roadmap-cta {
    text-align: center;
}

.roadmap-cta p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* ===== INVESTMENT HIGHLIGHTS ===== */
.buss-intro{
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 40px;
}

.buss-image img {
    object-fit: cover;
}

.buss-text h2 {
    margin-bottom: 1.5rem;
}

.investment-highlights {
    background: #F9F9FC;
}

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

.highlight-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
}

.highlight-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B1F75;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.highlight-featured {
    background: linear-gradient(135deg, #1B1F75 0%, #4C56A3 100%);
    color: #FFFFFF;
}

.highlight-featured .highlight-number,
.highlight-featured h3,
.highlight-featured p {
    color: #FFFFFF;
}

/* ===== BUSINESS MODEL ===== */
.business-model {
    background: #FFFFFF;
}

.model-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.model-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.model-card {
    background: #F9F9FC;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1B1F75;
}

.model-card h3 {
    margin-bottom: 1.5rem;
    color: #1B1F75;
}

.model-list {
    list-style: none;
}

.model-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #EAEAEA;
}

.model-list li:last-child {
    border-bottom: none;
}

/* ===== ECONOMICS SECTION ===== */
.economics-section {
    background: #F9F9FC;
}

.economics-content {
    max-width: 900px;
    margin: 0 auto;
}

.economics-assumptions {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.assumptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.assumption-item {
    text-align: center;
    padding: 1rem;
    background: #F9F9FC;
    border-radius: 4px;
}

.assumption-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.assumption-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1B1F75;
}

.economics-calculation {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.calc-formula {
    text-align: center;
    margin-top: 1.5rem;
}

.calc-formula p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.calc-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1B1F75 0%, #4C56A3 100%);
    border-radius: 8px;
    color: #FFFFFF;
}

.result-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.result-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

.calc-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
}

.economics-advantage {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.advantage-list {
    list-style: none;
    margin-top: 1rem;
}

.advantage-list li {
    padding: 1rem 0 1rem 2rem;
    border-bottom: 1px solid #EAEAEA;
    position: relative;
}

.advantage-list li:last-child {
    border-bottom: none;
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1B1F75;
    font-weight: bold;
    font-size: 1.25rem;
}

/* ===== MARKET OPPORTUNITY ===== */
.market-opportunity {
    background: #FFFFFF;
}

.market-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.market-card {
    background: #F9F9FC;
    padding: 2rem;
    border-radius: 8px;
}

.market-featured {
    background: linear-gradient(135deg, rgba(27, 31, 117, 0.05) 0%, rgba(76, 86, 163, 0.05) 100%);
    border: 2px solid #1B1F75;
}

/* ===== PARTNERSHIPS ===== */
.partnerships-section {
    background: #F9F9FC;
}

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

.partnership-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #1B1F75;
}

.partnership-card h3 {
    margin-bottom: 1rem;
    color: #1B1F75;
}

/* ===== INVESTOR CTA ===== */
.investor-cta-section {
    background: linear-gradient(135deg, #1B1F75 0%, #4C56A3 100%);
    color: #FFFFFF;
    text-align: center;
}

.investor-cta-section h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.investor-cta-section .btn-primary {
    background: #FFFFFF;
    color: #1B1F75;
    border-color: #FFFFFF;
}

.investor-cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.investor-cta-section .btn-secondary {
    background: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.investor-cta-section .btn-secondary:hover {
    background: #FFFFFF;
    color: #1B1F75;
}

/* ===== DECK SECTION ===== */
.deck-section {
    background: #F9F9FC;
    padding: 3rem 0;
}

.deck-card {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.deck-card h3 {
    margin-bottom: 1rem;
}

/* ===== FORMS ===== */
.contact-form-section,
.investor-form {
    background: #FFFFFF;
}

.investor-form,
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #F9F9FC;
    padding: 2rem;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1B1F75;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: #F9F9FC;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 31, 117, 0.15);
}

.news-date {
    display: inline-block;
    background: #1B1F75;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-card h3 {
    margin-bottom: 1rem;
    color: #1B1F75;
}

.news-link {
    font-weight: 600;
    color: #1B1F75;
    display: inline-block;
    margin-top: 0.5rem;
}

.news-link:hover {
    color: #4C56A3;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-image img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-details h3 {
    margin-bottom: 1.5rem;
    color: #1B1F75;
}

.contact-block {
    margin-bottom: 1.5rem;
}

.contact-block h4 {
    color: #1B1F75;
    margin-bottom: 0.5rem;
}

.contact-block p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
}

.contact-form-wrapper {
    background: #F9F9FC;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
    color: #1B1F75;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, #1B1F75 0%, #4C56A3 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 3rem 0;
}

.newsletter-content h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    white-space: nowrap;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1B1F75;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero h1 { font-size: 2.25rem; }
    .page-hero h1 { font-size: 2.5rem; }
    
    .works-content,
    .innovation-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        gap: 0;
        width: 200px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 0 0 8px 8px;
        display: none;
        padding: 1rem 0;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list a {
        padding: 0.75rem 1.5rem;
        width: 100%;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    .hero h1 { font-size: 1.875rem; }
    .page-hero h1 { font-size: 2rem; }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .result-value {
        font-size: 2.5rem;
    }
}
/* Bigger LiGHT render on Home (desktop only) */
@media (min-width: 969px){ /* your layout stacks below 968px */
  .how-it-works .works-content{
    grid-template-columns: 1fr 1.2fr;  /* give the image column more room */
    align-items: center;
  }
  .how-it-works .works-image img{
    width: 120%;        /* gently oversize the image */
    max-width: none;    /* allow overflow beyond the column */
    transform: translateX(-2%); /* nudge left so it centers visually */
  }
}
/* Fix Investment Opportunity CTA button size */

/* Full-width buttons inside forms only */
.contact-form .btn-primary,
.investor-form .btn-primary,
.newsletter-form .btn-primary {
    display: block;
    width: 100%;
}
