/* ==========================================================================
   Nodality — Design System & Stylesheet
   Theme: Modern Cyber / Dark Glassmorphism
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #090d16;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-glow: rgba(56, 189, 248, 0.3);
  
  --primary: #38bdf8; /* Cyber Azure */
  --primary-glow: rgba(56, 189, 248, 0.4);
  --accent-emerald: #34d399;
  --accent-indigo: #818cf8;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

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

ul {
  list-style: none;
}

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

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
}

.glass-panel:hover {
  border-color: var(--border-glass-glow);
}

/* Background Decorative Glowing Orbs */
.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(0,0,0,0) 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, rgba(0,0,0,0) 70%);
  top: 900px;
  right: -100px;
}

.orb-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.15) 0%, rgba(0,0,0,0) 70%);
  bottom: 200px;
  left: -150px;
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-text {
  color: var(--primary);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #0f172a;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(56, 189, 248, 0.5);
  background: linear-gradient(135deg, #7dd3fc 0%, #0369a1 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  border-color: var(--primary);
  background: rgba(30, 41, 59, 0.8);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--accent-emerald);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Section Header Common */
.section-header {
  margin-bottom: 2.4rem;
}

.section-header.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  padding: 0.28rem 0.8rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 10rem 0 5rem 0;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--accent-emerald);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
}

.hero-title {
  font-size: 3.8rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.highlight-icon {
  color: var(--primary);
}

/* Visual Card Mockup */
.hero-visual {
  position: relative;
}

.visual-card {
  padding: 1.8rem;
  position: relative;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.card-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--accent-emerald);
  font-weight: 600;
}

.pulse {
  width: 6px;
  height: 6px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.automation-flow {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.flow-node {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.flow-node.highlight-node {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.3);
}

.node-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.node-icon.whatsapp { background: #25d366; color: #fff; }
.node-icon.engine { background: var(--primary); color: #0f172a; }
.node-icon.sheet { background: #107c41; color: #fff; }

.node-info {
  display: flex;
  flex-direction: column;
}

.node-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.node-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.2rem 0;
}

.pulse-line {
  height: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent-emerald));
}

.flow-tag {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.card-footer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

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

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Industry Solutions Section
   ========================================================================== */
.solutions-section {
  padding: 4.2rem 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-5px);
}

.solution-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.solution-icon-wrapper.store {
  background: rgba(56, 189, 248, 0.15);
  color: var(--primary);
}

.solution-icon-wrapper.factory {
  background: rgba(52, 211, 153, 0.15);
  color: var(--accent-emerald);
}

.solution-icon-wrapper.office {
  background: rgba(129, 140, 248, 0.15);
  color: var(--accent-indigo);
}

.solution-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: auto;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.solution-list i {
  color: var(--accent-emerald);
  margin-top: 0.2rem;
}

/* ==========================================================================
   Real Automation Examples Section (Replaces Calculator)
   ========================================================================== */
.examples-section {
  padding: 4.2rem 0;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.example-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.example-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.example-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.example-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.example-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.example-icon.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.example-icon.invoice {
  background: rgba(56, 189, 248, 0.15);
  color: var(--primary);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.example-icon.stock {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.example-icon.receipts {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.example-header h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--text-main);
}

.comparison-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  line-height: 1.5;
}

.comparison-item.before {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-item.after {
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.comp-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.comparison-item.before .comp-label {
  color: #f87171;
}

.comparison-item.after .comp-label {
  color: var(--accent-emerald);
}

.comparison-item p {
  color: var(--text-muted);
  margin: 0;
}

.examples-cta-banner {
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--border-glass-glow);
}

.cta-banner-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.cta-banner-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   4-Step Process Section
   ========================================================================== */
.process-section {
  padding: 4.2rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 2.2rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.step-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.step-icon-wrapper.server {
  background: rgba(129, 140, 248, 0.12);
  color: var(--accent-indigo);
}

.step-icon-wrapper.code {
  background: rgba(52, 211, 153, 0.12);
  color: var(--accent-emerald);
}

.step-icon-wrapper.heart {
  background: rgba(244, 63, 94, 0.12);
  color: #f43f5e;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.step-cost-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  margin-top: auto;
  align-self: flex-start;
}

.step-cost-badge.free {
  background: rgba(52, 211, 153, 0.12);
  color: var(--accent-emerald);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.step-cost-badge.fixed {
  background: rgba(56, 189, 248, 0.12);
  color: var(--primary);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.step-cost-badge.variable {
  background: rgba(129, 140, 248, 0.12);
  color: var(--accent-indigo);
  border: 1px solid rgba(129, 140, 248, 0.3);
}

.step-cost-badge.monthly {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

/* ==========================================================================
   Pricing & Cost Structure Section
   ========================================================================== */
.pricing-section {
  padding: 4.2rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.03) 0%, rgba(0,0,0,0) 70%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.18);
}

.pricing-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.pricing-badge.highlighted {
  color: #0f172a;
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 100%);
}

.pricing-header {
  margin-bottom: 1.2rem;
}

.pricing-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.featured-icon {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 100%);
  color: #0f172a;
}

.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.price-type {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.price-type.gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: auto;
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.pricing-features i {
  color: var(--accent-emerald);
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

/* Consultancy Callout Box */
.consultancy-callout {
  padding: 2rem 2.2rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(129, 140, 248, 0.08) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}

.consultancy-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.consultancy-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.consultancy-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Ownership Banner */
.ownership-banner {
  padding: 3rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  position: relative;
  overflow: hidden;
}

.ownership-header {
  max-width: 850px;
  margin-bottom: 2.5rem;
}

.ownership-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(56, 189, 248, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.ownership-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.ownership-header p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.ownership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ownership-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.ownership-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(52, 211, 153, 0.12);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ownership-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.ownership-text p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 4.2rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.4rem 1.8rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Contact & Consultation Section
   ========================================================================== */
.contact-section {
  padding: 4.5rem 0 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.contact-form-card, .contact-meet-card {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.card-title-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(56, 189, 248, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
}

.card-title-badge.alt {
  color: var(--accent-emerald);
  background: rgba(52, 211, 153, 0.1);
}

.contact-form-card h2, .contact-meet-card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.contact-form-card p, .contact-meet-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input, .form-group textarea {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.form-status-msg {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 0;
}

.form-status-msg.success {
  color: var(--accent-emerald);
  padding: 0.8rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.form-status-msg.error {
  color: #ef4444;
  padding: 0.8rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Meet Booking Side Card */
.meet-feature-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  background: rgba(56, 189, 248, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.meet-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.meet-info h4 {
  font-size: 1.05rem;
}

.meet-info p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.meet-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meet-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.meet-benefits i {
  color: var(--accent-emerald);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem 0;
  background: rgba(5, 8, 14, 0.95);
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 350px;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Modal Dialog Style
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 100%;
  max-width: 560px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem auto;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  text-align: center;
}

.booking-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.booking-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.or-divider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--border-glass);
}

.or-divider span {
  position: relative;
  background: #0f172a;
  padding: 0 0.8rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 700;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .solutions-grid, .examples-grid, .pricing-grid, .ownership-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .examples-cta-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(9, 13, 22, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-glass);
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .calculator-wrapper {
    padding: 1.8rem;
  }

  .contact-form-card, .contact-meet-card {
    padding: 1.8rem;
  }
}

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .ownership-banner {
    padding: 1.8rem;
  }
}

/* ==========================================================================
   Subpage Dedicated Styles
   ========================================================================== */
.subpage-header {
  padding: 8.5rem 0 3rem 0;
  text-align: center;
  position: relative;
}

.subpage-title {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.subpage-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 1.8rem auto;
  line-height: 1.6;
}

.deep-dive-card {
  padding: 2.8rem;
  margin-bottom: 2.5rem;
}

.deep-dive-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.deep-dive-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.deep-dive-title {
  font-size: 1.6rem;
}

.deep-dive-body {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.nav-link.active-page {
  color: var(--primary);
  font-weight: 700;
}
