﻿/* ==============================================================================
   SWISS-EDITORIAL MODERN CORPORATE DESIGN SYSTEM
   Palette: Slate Blue & Warm Gray | Typography: Noto Sans JP + Inter
   No Rounded Corners, Generous Lines, High-contrast Grids
   ============================================================================== */

:root {
  --primary: #0F172A;        /* Slate Blue Dark */
  --secondary: #1E293B;      /* Mid Slate Blue */
  --accent: #2563EB;         /* True Blue Accent */
  --accent-light: #EFF6FF;   /* Soft Ice Blue */
  --bg-light: #F8FAFC;       /* Warm Alabaster */
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;   /* Clean Thin Hairline */
  --text-dark: #0F172A;
  --text-muted: #475569;
  --max-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important; /* Swiss Editorial Strictness: Sharp corners only */
}

html {
  scroll-behavior: smooth;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.7;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.nova-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nova-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.nova-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

/* Header & Nav Panel styling */
.nova-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.nova-header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nova-logo-wrapper {
  display: flex;
  align-items: center;
}

.nova-logo-img {
  height: 44px;
  width: auto;
}

.nova-nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nova-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.nova-nav-link:hover {
  color: var(--accent);
}

.nova-nav-btn {
  font-size: 13px;
  font-weight: 700;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 10px 20px;
  border: 1px solid var(--primary);
  letter-spacing: 0.5px;
}

.nova-nav-btn:hover {
  background-color: transparent;
  color: var(--primary);
}

/* Burger Mobile Menu Button */
.nova-burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nova-burger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

/* Mobile Nav Panel */
.nova-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  z-index: 999;
  padding: 100px 40px;
  transition: var(--transition-smooth);
}

.nova-mobile-menu.active {
  right: 0;
}

.nova-nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nova-mobile-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.nova-mobile-btn {
  text-align: center;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .nova-nav-desktop {
    display: none;
  }
  .nova-burger-btn {
    display: flex;
  }
}/* Section Basics and Hero Grid */
.nova-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.nova-section-num {
  font-family: 'Inter', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}

.nova-section-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.nova-section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 60px;
}

/* Swiss Editorial Hero Layout */
.nova-hero-section {
  position: relative;
  background-color: var(--bg-light);
  padding: 140px 0 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.nova-hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.nova-kicker {
  font-family: 'Inter', monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.nova-hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.nova-hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.nova-hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.nova-btn-primary {
  background-color: var(--accent);
  color: var(--bg-white);
  padding: 16px 32px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid var(--accent);
  transition: var(--transition-smooth);
}

.nova-btn-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.nova-btn-secondary {
  background-color: transparent;
  color: var(--primary);
  padding: 16px 32px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid var(--primary);
  transition: var(--transition-smooth);
}

.nova-btn-secondary:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

.nova-hero-trust {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.nova-trust-item {
  display: flex;
  flex-direction: column;
}

.nova-trust-num {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.nova-trust-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.nova-hero-media {
  position: relative;
  border: 1px solid var(--border-color);
  padding: 10px;
  background-color: var(--bg-white);
}

.nova-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .nova-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nova-hero-img {
    height: 350px;
  }
}/* Issue Framing / Problem cards */
.nova-problem-card {
  border: 1px solid var(--border-color);
  padding: 40px;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

.nova-problem-card:hover {
  border-color: var(--primary);
}

.nova-card-index {
  font-family: 'Inter', monospace;
  font-size: 32px;
  font-weight: 800;
  color: var(--border-color);
  display: block;
  margin-bottom: 24px;
}

.nova-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.nova-card-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Value Props / Benefit Section */
.nova-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .nova-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.nova-benefit-item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
}

.nova-benefit-icon-box {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.nova-benefit-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.nova-benefit-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Comparison Table Section */
.nova-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
}

.nova-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.nova-comparison-table th,
.nova-comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.nova-comparison-table th {
  background-color: var(--bg-light);
  font-weight: 700;
  color: var(--primary);
}

.nova-comparison-table tr:last-child th,
.nova-comparison-table tr:last-child td {
  border-bottom: none;
}

.nova-comparison-table td.highlight,
.nova-comparison-table th.highlight {
  background-color: var(--accent-light);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.font-bold {
  font-weight: 700;
}/* Service Cards */
.nova-service-card {
  border: 1px solid var(--border-color);
  padding: 40px;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.nova-service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.nova-service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 12px;
}

.nova-service-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.nova-service-list {
  list-style: none;
  font-size: 13px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nova-service-list li {
  position: relative;
  padding-left: 16px;
}

.nova-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background-color: var(--accent);
}

/* Timeline / Onboarding Steps */
.nova-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.nova-timeline::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--border-color);
}

.nova-timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

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

.nova-timeline-badge {
  flex-shrink: 0;
  width: 90px;
  height: 36px;
  border: 1px solid var(--primary);
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', monospace;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
}

.nova-timeline-content {
  padding-top: 4px;
}

.nova-timeline-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.nova-timeline-desc {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .nova-timeline::before {
    left: 20px;
  }
  .nova-timeline-item {
    flex-direction: column;
    gap: 12px;
  }
  .nova-timeline-badge {
    width: 70px;
    height: 30px;
  }
}/* Interactive Quiz Mini Tool */
.nova-quiz-container {
  border: 1px solid var(--border-color);
  padding: 40px;
  background-color: var(--bg-light);
}

.nova-quiz-card {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.nova-quiz-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.nova-quiz-q {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.nova-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nova-quiz-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.nova-quiz-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.nova-quiz-result {
  margin-top: 30px;
  border: 2px solid var(--accent);
  padding: 30px;
  background-color: var(--bg-white);
}

.nova-result-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.nova-result-explanation {
  font-size: 14px;
  margin-bottom: 24px;
}

.nova-result-cta {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.nova-cta-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Case Walkthroughs Grid */
.nova-case-card {
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

.nova-case-card:hover {
  border-color: var(--primary);
}

.nova-case-media {
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.nova-case-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.nova-case-card:hover .nova-case-img {
  transform: scale(1.05);
}

.nova-case-body {
  padding: 30px;
}

.nova-case-tag {
  font-size: 11px;
  font-weight: 800;
  background-color: var(--accent-light);
  color: var(--accent);
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 12px;
}

.nova-case-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.nova-case-desc {
  font-size: 13px;
  color: var(--text-muted);
}/* Standards & Cultural Banner */
.nova-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 968px) {
  .nova-standards-grid {
    grid-template-columns: 1fr;
  }
}

.nova-standard-box {
  border-left: 2px solid var(--accent);
  padding: 0 0 0 24px;
}

.nova-standard-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.nova-standard-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.nova-cultural-banner {
  border: 1px solid var(--border-color);
  padding: 60px;
  background-color: var(--primary);
  color: var(--bg-white);
}

.nova-cultural-banner .nova-section-title {
  color: var(--bg-white);
}

.nova-cultural-banner .nova-section-num {
  color: var(--accent-light);
}

.nova-cultural-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.nova-cultural-desc:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .nova-cultural-banner {
    padding: 30px;
  }
}

/* About Section Tables */
.nova-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

@media (max-width: 968px) {
  .nova-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

.nova-about-p {
  font-size: 14px;
  color: var(--text-muted);
}

.nova-about-details {
  border: 1px solid var(--border-color);
  padding: 30px;
  background-color: var(--bg-light);
}

.nova-details-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.nova-details-table {
  width: 100%;
  border-collapse: collapse;
}

.nova-details-table th,
.nova-details-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  text-align: left;
}

.nova-details-table tr:last-child th,
.nova-details-table tr:last-child td {
  border-bottom: none;
}

.nova-details-table th {
  width: 100px;
  color: var(--text-muted);
  font-weight: 700;
  vertical-align: top;
}/* Testimonials block */
.nova-testimonial-card {
  border: 1px solid var(--border-color);
  padding: 30px;
  background-color: var(--bg-white);
}

.nova-testi-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.nova-testi-avatar {
  border-radius: 0 !important;
  border: 1px solid var(--border-color);
  width: 60px;
  height: 60px;
}

.nova-testi-name {
  font-size: 15px;
  font-weight: 700;
}

.nova-testi-title {
  font-size: 11px;
  color: var(--text-muted);
}

.nova-testi-text {
  font-size: 13px;
  color: var(--text-dark);
}

/* Pricing cards */
.nova-pricing-card {
  border: 1px solid var(--border-color);
  padding: 40px;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

.nova-pricing-card:hover {
  border-color: var(--primary);
}

.nova-pricing-card.highlight {
  border: 2px solid var(--accent);
  background-color: var(--accent-light);
}

.nova-pricing-item-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.nova-price-number {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.nova-pricing-item-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Glossary Section styling */
.nova-glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .nova-glossary-grid {
    grid-template-columns: 1fr;
  }
}

.nova-glossary-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.nova-glossary-term {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.nova-glossary-definition {
  font-size: 13px;
  color: var(--text-muted);
}/* Extended FAQ Area */
.nova-faq-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.nova-faq-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nova-faq-group-title {
  font-size: 18px;
  font-weight: 800;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.nova-faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.nova-faq-item:last-child {
  border-bottom: none;
}

.nova-faq-q {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.nova-faq-a {
  font-size: 13px;
  color: var(--text-muted);
}

/* Secure Lead Form Split Section (S6) */
.nova-form-section {
  background-color: var(--bg-light);
}

.nova-form-split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
}

@media (max-width: 968px) {
  .nova-form-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.nova-form-guide-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
}

.nova-form-guide-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.nova-security-badge-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.nova-security-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

.nova-sec-badge-icon {
  color: var(--accent);
}

.nova-post-submit-steps {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.nova-steps-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.nova-steps-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Form block */
.nova-form-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 40px;
}

.nova-form-group-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.nova-form-field {
  margin-bottom: 20px;
}

.nova-form-label {
  font-size: 13px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.nova-form-label .required {
  color: #DC2626;
  font-size: 11px;
}

.nova-input, .nova-textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

.nova-input:focus, .nova-textarea:focus {
  border-color: var(--accent);
}

.nova-textarea {
  height: 120px;
  resize: vertical;
}

.nova-input-hint {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.nova-form-agreement {
  margin-bottom: 24px;
}

.nova-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
}

.nova-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.nova-inline-link {
  text-decoration: underline;
  color: var(--accent);
}

.nova-form-submit-btn {
  width: 100%;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 16px;
  border: 1px solid var(--primary);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nova-form-submit-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* Response alerts */
.nova-form-alert {
  padding: 24px;
  margin-top: 20px;
}

.nova-form-alert.success {
  background-color: var(--accent-light);
  border: 1px solid var(--accent);
}

.nova-form-alert.error {
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
}

.nova-alert-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.nova-alert-body {
  font-size: 13px;
  color: var(--text-muted);
}/* Footer and consent blocks */
.nova-footer {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--border-color);
}

.nova-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  border-bottom: 1px solid #334155;
  padding-bottom: 40px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .nova-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.nova-footer-brand-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nova-footer-motto {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.6;
}

.nova-footer-contact-info {
  font-size: 12px;
  color: #CBD5E1;
}

.nova-footer-contact-link {
  text-decoration: underline;
}

.nova-footer-col-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--bg-white);
  letter-spacing: 0.5px;
}

.nova-footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nova-footer-link {
  font-size: 13px;
  color: #94A3B8;
}

.nova-footer-link:hover {
  color: var(--bg-white);
}

.nova-footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nova-copyright {
  font-size: 11px;
  color: #64748B;
  line-height: 1.6;
}

.nova-back-to-top-btn {
  background: none;
  border: 1px solid #334155;
  color: #94A3B8;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.nova-back-to-top-btn:hover {
  color: var(--bg-white);
  border-color: var(--bg-white);
}

/* Cookie consent bar */
.nova-cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  border-top: 1px solid #334155;
  color: var(--bg-white);
  padding: 16px 24px;
  z-index: 2000;
}

.nova-cookie-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.nova-cookie-text {
  font-size: 12px;
  color: #CBD5E1;
  line-height: 1.6;
}

.nova-cookie-actions {
  flex-shrink: 0;
}

.nova-cookie-btn-accept {
  background-color: var(--accent);
  color: var(--bg-white);
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nova-cookie-btn-accept:hover {
  background-color: var(--bg-white);
  color: var(--primary);
}

@media (max-width: 768px) {
  .nova-cookie-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Split Mask Reveal Scroll Animation Fallback */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
