/* ==========================================================================
   ONLIDESK — COMPONENT STYLES
   ========================================================================== */

/* ==========================================================================
   SECTION 2: INTRODUCTION & CONCEPT
   ========================================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-content h2 {
  margin-bottom: 24px;
}

.intro-card-stack {
  position: relative;
}

.intro-feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.intro-feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-brand-horizontal);
}

.intro-pill-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.intro-pill-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.intro-pill-item:hover {
  background: rgba(0, 102, 255, 0.05);
  border-color: var(--border-highlight);
  transform: translateX(4px);
}

.intro-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 3: LIVE WEBSITE SHOWCASE
   ========================================================================== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.concept-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.concept-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-6px);
  box-shadow: var(--shadow-floating), 0 0 30px rgba(0, 102, 255, 0.15);
}

/* Browser Mockup Chrome */
.browser-mockup {
  background: #141724;
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot.red { background: #FF5F56; }
.browser-dot.yellow { background: #FFBD2E; }
.browser-dot.green { background: #27C93F; }

.browser-address {
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-address svg {
  width: 12px;
  height: 12px;
  color: var(--brand-cyan);
  flex-shrink: 0;
}

/* Mockup Content Area */
.mockup-preview-area {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #0D0F18;
}

.preview-rendered-view {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.concept-card:hover .preview-rendered-view {
  transform: scale(1.02);
}

/* Concept Mockup Previews inside Card */
.preview-theme-plumbing {
  background: linear-gradient(135deg, #0b192c 0%, #1e3e62 100%);
  color: #fff;
  padding: 24px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-theme-dental {
  background: linear-gradient(135deg, #092025 0%, #104449 100%);
  color: #fff;
  padding: 24px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-theme-restaurant {
  background: linear-gradient(135deg, #1c130d 0%, #2e1d13 100%);
  color: #fff;
  padding: 24px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-theme-roofing {
  background: linear-gradient(135deg, #18191d 0%, #282c35 100%);
  color: #fff;
  padding: 24px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.mini-brand {
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-hero-text h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.25;
}

.mini-hero-text p {
  font-size: 0.78rem;
  opacity: 0.85;
  color: #E2E8F0;
}

.mini-badges {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mini-chip {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.card-footer-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-industry-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-cyan);
}

.card-label-badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(147, 51, 234, 0.12);
  color: var(--brand-violet);
  border: 1px solid rgba(147, 51, 234, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
}

.card-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.card-action-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   SECTION 4: INTERACTIVE WEB EXPERIENCES
   ========================================================================== */
.interactive-demos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.interactive-demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.interactive-demo-card:hover {
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-card);
}

.demo-sandbox-area {
  height: 220px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Demo 1: Cursor Light Field */
#demo-canvas-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}

.demo-hint-badge {
  position: absolute;
  bottom: 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  pointer-events: none;
  border: 1px solid var(--border-subtle);
}

/* Demo 2: 3D Perspective Tilt */
.tilt-card-wrapper {
  perspective: 800px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.tilt-inner-element {
  width: 80%;
  height: 75%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(147, 51, 234, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  position: relative;
}

.tilt-inner-element .tilt-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  opacity: 0.6;
}

/* Demo 3: Live Customizer Simulator */
.customizer-box {
  width: 90%;
  height: 85%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.customizer-nav-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px;
  border-radius: var(--radius-sm);
}

.customizer-tab-btn {
  flex: 1;
  font-size: 0.72rem;
  padding: 4px 6px;
  border-radius: 4px;
  text-align: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.customizer-tab-btn.active {
  background: var(--brand-blue);
  color: #fff;
  font-weight: 600;
}

.customizer-viewport {
  flex-grow: 1;
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.customizer-viewport.theme-blue {
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
}

.customizer-viewport.theme-purple {
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.customizer-viewport.theme-cyan {
  background: rgba(0, 210, 255, 0.15);
  border: 1px solid rgba(0, 210, 255, 0.3);
}

/* ==========================================================================
   SECTION 5: WHY ONLIDESK
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  font-size: 20px;
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
}

.why-card p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 6: THE ONLIDESK PROCESS
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.process-step-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.12);
}

.step-number-pill {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-cyan);
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  width: fit-content;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.process-step-card.highlight-step {
  border-color: rgba(147, 51, 234, 0.4);
  background: linear-gradient(180deg, rgba(147, 51, 234, 0.08) 0%, rgba(16, 19, 34, 0.7) 100%);
}

.process-step-card.highlight-step .step-number-pill {
  color: var(--brand-violet);
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.35);
}

.process-step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-pure);
}

.process-step-card p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 7: PRICING / OFFER
   ========================================================================== */
.pricing-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(22, 27, 46, 0.8) 0%, rgba(10, 12, 20, 0.9) 100%);
  border: 1px solid rgba(0, 102, 255, 0.35);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(20px);
  position: relative;
  box-shadow: 0 25px 60px -10px rgba(0, 102, 255, 0.15), var(--shadow-card);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand-horizontal);
}

.pricing-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-title-area h3 {
  font-size: 1.85rem;
  margin-bottom: 6px;
}

.pricing-title-area p {
  font-size: 1rem;
}

.pricing-price-box {
  text-align: right;
}

.pricing-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1;
  font-family: var(--font-mono);
  letter-spacing: -0.03em;
}

.pricing-frequency {
  font-size: 0.85rem;
  color: var(--brand-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin-bottom: 38px;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-primary);
}

.feature-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.18);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.pricing-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.pricing-guarantee-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-guarantee-note svg {
  color: #22C55E;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 8: PORTFOLIO DEVICE PREVIEW & TABS
   ========================================================================== */
.portfolio-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.portfolio-tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.portfolio-tab-btn:hover {
  border-color: var(--brand-blue);
  color: var(--text-pure);
}

.portfolio-tab-btn.active {
  background: var(--grad-brand-horizontal);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.35);
}

.portfolio-active-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-floating);
  transition: all 0.4s ease;
}

/* Device Viewport Selector inside Showcase */
.viewport-control-bar {
  background: #121524;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  gap: 16px;
  flex-wrap: wrap;
}

.viewport-device-buttons {
  display: flex;
  gap: 8px;
}

.device-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.device-btn.active, .device-btn:hover {
  background: rgba(0, 102, 255, 0.15);
  border-color: var(--brand-blue);
  color: var(--text-pure);
}

.portfolio-stage-container {
  padding: 30px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #090B12;
  transition: all 0.3s ease;
}

.mockup-viewport-shell {
  width: 100%;
  max-width: 100%;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-viewport-shell.mode-tablet {
  max-width: 768px;
}

.mockup-viewport-shell.mode-mobile {
  max-width: 380px;
}

/* ==========================================================================
   SECTION 9: FAQ ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-highlight);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-pure);
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-blue);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 9: FINAL HIGH-CONVERSION CTA BANNER
   ========================================================================== */
.final-cta-banner {
  background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.18) 0%, rgba(147, 51, 234, 0.1) 50%, rgba(10, 12, 20, 0.8) 100%);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -10px rgba(0, 102, 255, 0.2);
}

.final-cta-banner h2 {
  margin-bottom: 18px;
}

.final-cta-banner p.lead {
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta-subnote {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   PREVIEW REQUEST MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 580px;
  background: #111422;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 102, 255, 0.2);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-pure);
}

.modal-step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}

.modal-step-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-subtle);
  z-index: 1;
  transform: translateY(-50%);
}

.step-node {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111422;
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.step-node.active {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 0 15px var(--brand-blue);
}

.modal-form-group {
  margin-bottom: 18px;
}

.modal-form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.modal-input, .modal-select, .modal-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-pure);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.modal-input:focus, .modal-select:focus, .modal-textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: rgba(0, 102, 255, 0.04);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.25);
}

.modal-select option {
  background: #111422;
  color: #fff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #040508;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 35px 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-pure);
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-legal-inline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
