/*
Theme Name: Chess IND
Theme URI: https://chessind.com
Author: Chess IND Team
Author URI: https://chessind.com
Description: Ultra-Premium Luxury Smart Robotic Chessboard Theme for CHESSIND - Featuring Full 4K Photography Background Hero Section, Dark Navy Header (#0B172A) matching footer, Official FIDE Grandmaster Chess Rules Engine with Player & Opponent Move Execution, GoChess-inspired robotic piece movement showcases, product model configurator, and pre-order booking system.
Version: 5.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chessind
Tags: chess, smartboard, robotic, luxury, 4k-hero, navy-header, orange-white, landing-page, responsive
*/

/* ==========================================================================
   Import Google Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ==========================================================================
   CSS Custom Variables - Luxury Navy & Electric Logo Coral Design System
   ========================================================================== */
:root {
  /* Dark Header & Footer Background (#0B172A) */
  --bg-header-footer: #0B172A;
  --bg-navy-950: #050C19;
  
  /* Light Content Background Surfaces */
  --bg-pure-white: #FFFFFF;
  --bg-off-white: #FAF9F8;
  --bg-light-slate: #F8FAFC;
  --bg-slate-100: #F1F5F9;
  --bg-orange-tint: #FFF4F0;
  --bg-orange-soft: #FFEAE3;

  /* Card Surfaces & Glass Stroke */
  --bg-card-light: #FFFFFF;
  --bg-card-hover: #FFFDFB;
  --border-light: rgba(226, 232, 240, 0.9);
  --border-orange: rgba(255, 84, 39, 0.35);
  --border-orange-hover: rgba(255, 84, 39, 0.75);

  /* Primary Accent: Logo Electric Coral Orange (#FF5427) */
  --brand-orange: #FF5427;
  --brand-orange-light: #FF6C42;
  --brand-orange-dark: #D9380E;
  --brand-orange-glow: rgba(255, 84, 39, 0.4);
  --brand-orange-subtle: rgba(255, 84, 39, 0.12);
  --brand-gradient: linear-gradient(135deg, #FF5427 0%, #FF7038 100%);
  --brand-text-gradient: linear-gradient(135deg, #FF5427 0%, #FF7A00 100%);

  /* Secondary Accents */
  --led-cyan: #0284C7;
  --led-cyan-glow: rgba(2, 132, 199, 0.35);
  --accent-emerald: #059669;

  /* High Legibility Dark Slate Text */
  --text-dark: #0F172A;
  --text-main: #334155;
  --text-sub: #64748B;
  --text-muted: #94A3B8;

  /* Typography */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-orange: 0 10px 30px -5px rgba(255, 84, 39, 0.4);
  --shadow-card: 0 12px 35px -10px rgba(15, 23, 42, 0.08);
  --shadow-elevated: 0 25px 60px -15px rgba(255, 84, 39, 0.22);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base Reset & Global Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-pure-white);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--bg-pure-white);
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-white { color: #FFFFFF !important; }

.text-gradient {
  background: var(--brand-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-orange {
  color: var(--brand-orange);
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--bg-orange-tint);
  border: 1px solid var(--border-orange);
  color: var(--brand-orange-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.badge-pill.badge-hero {
  background: rgba(255, 84, 39, 0.2);
  border: 1px solid rgba(255, 84, 39, 0.6);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}

.badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 12px var(--brand-orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 84, 39, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 84, 39, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 84, 39, 0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--brand-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(255, 84, 39, 0.55);
  background: linear-gradient(135deg, #FF6C42 0%, #E03E12 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================================================
   Header Navigation Styling (Dark Navy #0B172A Matching Footer Background)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: var(--bg-header-footer);
  border-bottom: 1px solid rgba(255, 84, 39, 0.25);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(11, 23, 42, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--brand-orange);
}

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

.brand-logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.desktop-nav .nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #F1F5F9;
  position: relative;
  padding: 6px 0;
}

.desktop-nav .nav-links a:hover,
.desktop-nav .nav-links a.active {
  color: var(--brand-orange);
}

.desktop-nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
  transition: var(--transition);
}

.desktop-nav .nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 6px;
}

/* Mobile Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 25, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: var(--bg-header-footer);
  border-left: 1px solid var(--border-orange);
  z-index: 1100;
  padding: 32px 24px;
  transition: var(--transition);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: #94A3B8;
  background: none;
  border: none;
  cursor: pointer;
}

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

.drawer-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
}

.drawer-links a:hover {
  color: var(--brand-orange);
}

/* ==========================================================================
   Hero Section: 4K PHOTOGRAPHY FULL-WIDTH COVER BACKGROUND
   ========================================================================== */
.hero-section-fullwidth {
  position: relative;
  width: 100%;
  min-height: 92vh;
  padding-top: 190px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  box-shadow: inset 0 -20px 50px rgba(0,0,0,0.5);
}

.hero-full-container {
  position: relative;
  z-index: 3;
}

.hero-full-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-full-title {
  font-size: 3.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

.hero-full-subtitle {
  font-size: 1.25rem;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-full-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-specs-card {
  background: rgba(11, 23, 42, 0.85);
  border: 2px solid var(--brand-orange);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 84, 39, 0.2);
  transition: var(--transition);
}

.hero-specs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 84, 39, 0.35);
}

.hero-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hero-spec-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-spec-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 84, 39, 0.2);
  border: 1px solid var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 84, 39, 0.3);
}

.hero-spec-info h4 {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.hero-spec-info p {
  font-size: 0.88rem;
  color: #CBD5E1;
}

/* ==========================================================================
   Interactive Live Smart Board Simulator Section (Player & Opponent Move Engine)
   ========================================================================== */
.simulator-section {
  background: var(--bg-light-slate);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-sub);
  font-size: 1.1rem;
}

.simulator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-pure-white);
  border: 2px solid var(--border-orange);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-elevated);
}

.interactive-board-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.interactive-board-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
}

.interactive-board {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  background: #231917;
  border: 10px solid #1C120F;
  border-radius: 16px;
  display: grid !important;
  grid-template-columns: repeat(8, 1fr) !important;
  grid-template-rows: repeat(8, 1fr) !important;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.8), 0 20px 45px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  position: relative;
}

.sim-square {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  user-select: none;
  width: 100%;
  height: 100%;
}

.sim-square.l { background: #F0D9B5; }
.sim-square.d { background: #B58863; }

.sq-coord {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sq-coord.rank-coord {
  top: 3px;
  left: 3px;
}

.sq-coord.file-coord {
  bottom: 3px;
  right: 3px;
}

.sim-square.l .sq-coord { color: #B58863; }
.sim-square.d .sq-coord { color: #F0D9B5; }

/* SVG Chess Piece Styling */
.chess-piece {
  width: 82%;
  height: 82%;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.28));
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  pointer-events: none;
}

.sim-square:hover .chess-piece {
  transform: scale(1.14) translateY(-2px);
  filter: drop-shadow(0 8px 14px rgba(255, 84, 39, 0.45));
}

.chess-piece.white-piece {
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.35));
}

.chess-piece.black-piece {
  filter: drop-shadow(0 3px 6px rgba(255,84,39,0.35));
}

.sim-square.selected-sq {
  background: rgba(255, 215, 0, 0.55) !important;
  box-shadow: inset 0 0 0 3px #FFD700, inset 0 0 12px rgba(255,215,0,0.5);
  z-index: 5;
}

.sim-square.valid-move {
  background: rgba(2, 132, 199, 0.2) !important;
}

.sim-square.valid-move::after {
  content: '';
  width: 24%;
  height: 24%;
  border-radius: 50%;
  background: var(--led-cyan);
  box-shadow: 0 0 14px var(--led-cyan);
  position: absolute;
  z-index: 4;
}

.sim-square.valid-capture {
  background: rgba(255, 84, 39, 0.35) !important;
}

.sim-square.valid-capture::after {
  content: '';
  width: 84%;
  height: 84%;
  border-radius: 50%;
  border: 4px solid var(--brand-orange);
  box-shadow: 0 0 16px var(--brand-orange);
  position: absolute;
  z-index: 4;
}

.game-over-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.game-over-card {
  text-align: center;
  color: #FFFFFF;
  padding: 30px 20px;
  max-width: 85%;
}

.game-over-icon {
  font-size: 3.8rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 20px rgba(255, 84, 39, 0.6));
  animation: pulse 1.5s infinite alternate;
}

.game-over-card h3 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  background: var(--brand-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-over-card p {
  color: #CBD5E1;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.sim-square.king-in-check {
  background: rgba(220, 38, 38, 0.75) !important;
  box-shadow: inset 0 0 0 3px #EF4444, inset 0 0 20px rgba(220, 38, 38, 0.85);
  animation: checkPulse 1s infinite alternate;
  z-index: 6;
}

@keyframes checkPulse {
  0% { box-shadow: inset 0 0 0 3px #EF4444, inset 0 0 15px rgba(220, 38, 38, 0.7); }
  100% { box-shadow: inset 0 0 0 4px #DC2626, inset 0 0 30px rgba(239, 68, 68, 1); }
}

.scoreboard-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 6px;
}

.score-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--bg-pure-white);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

.score-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.score-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-sub);
}

.score-pill strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
}

.score-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.white-dot { background: #94A3B8; box-shadow: 0 0 8px rgba(148, 163, 184, 0.6); }
.draw-dot { background: #EAB308; box-shadow: 0 0 8px rgba(234, 179, 8, 0.6); }
.black-dot { background: var(--brand-orange); box-shadow: 0 0 8px var(--brand-orange); }

.score-white { border-color: rgba(15, 23, 42, 0.15); }
.score-draw { border-color: rgba(234, 179, 8, 0.3); }
.score-black { border-color: var(--border-orange); }

.simulator-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mode-toggle-group {
  display: flex;
  gap: 6px;
  background: #F1F5F9;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.mode-btn {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: var(--text-sub);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mode-btn:hover {
  color: var(--text-dark);
}

.mode-btn.active {
  background: var(--brand-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(255, 84, 39, 0.35);
}

.sim-status-card {
  background: linear-gradient(145deg, #0F172A 0%, #1E293B 100%);
  border: 1px solid rgba(255, 84, 39, 0.35);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15), 0 0 20px rgba(255, 84, 39, 0.1);
  position: relative;
  overflow: hidden;
}

.sim-status-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-gradient);
}

.status-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.status-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulse 2s infinite;
}

.status-badge-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #10B981;
  text-transform: uppercase;
}

.sim-status-card h4 {
  font-size: 1.22rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-weight: 700;
}

.sim-status-card p {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.65;
}

.move-log-wrapper {
  margin-bottom: 0;
}

.move-log-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
}

.move-history-box {
  background: #0B172A;
  border: 1px solid #1E293B;
  border-radius: 14px;
  padding: 16px 20px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.92rem;
  font-weight: 600;
  color: #E2E8F0;
  max-height: 100px;
  overflow-y: auto;
  line-height: 1.7;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.sim-actions-row {
  display: flex;
  gap: 14px;
}

.btn-auto-move {
  flex: 1.4;
  padding: 16px 24px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-reset-board {
  flex: 1;
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.btn-reset-board:hover {
  background: rgba(15, 23, 42, 0.1);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

.telemetry-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-sub);
}

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

.status-pulse-emerald {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.status-pulse-cyan {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--led-cyan);
  box-shadow: 0 0 8px var(--led-cyan);
}

/* ==========================================================================
   Innovations Grid (GoChess-Style Cards)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-elevated);
  background: var(--bg-orange-tint);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--bg-orange-soft);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  margin-bottom: 24px;
}

.feature-icon-box svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.65;
}

.image-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  background: var(--bg-pure-white);
  border: 2px solid var(--border-orange);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.showcase-img-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   Models & Pricing Configurator Cards
   ========================================================================== */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.model-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.model-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.model-card.featured {
  background: var(--bg-orange-tint);
  border: 2px solid var(--brand-orange);
  box-shadow: var(--shadow-elevated);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-gradient);
  color: #FFFFFF;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-orange);
}

.model-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.model-desc {
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.model-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.model-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: line-through;
  margin-left: 8px;
}

.model-features {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.model-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.model-features li svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

/* ==========================================================================
   Robotic Architecture Deep Dive Tabs
   ========================================================================== */
.tech-tabs-wrapper {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.tech-nav-tabs {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  margin-bottom: 40px;
  overflow-x: auto;
}

.tech-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-sub);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.tech-tab-btn.active,
.tech-tab-btn:hover {
  color: var(--brand-orange-dark);
  background: var(--bg-orange-soft);
}

.tech-content-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tech-details h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.tech-details p {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tech-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tech-specs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================================================
   Reviews & FAQ Accordion
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.stars-row {
  color: var(--brand-orange);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.review-text {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #FFFFFF;
}

.reviewer-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.reviewer-info p {
  font-size: 0.85rem;
  color: var(--text-sub);
}

/* FAQ */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-question {
  padding: 24px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--brand-orange);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-main);
  line-height: 1.7;
  transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ==========================================================================
   Footer & Pre-Order Modal
   ========================================================================== */
.site-footer {
  background: var(--bg-header-footer);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px 0;
  color: #94A3B8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #FFFFFF;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 25, 0.7);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

.modal-card {
  background: var(--bg-pure-white);
  border: 2px solid var(--brand-orange);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 540px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-sub);
  font-size: 2rem;
  cursor: pointer;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-light-slate);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: var(--bg-pure-white);
  box-shadow: 0 0 15px rgba(255, 84, 39, 0.2);
}

/* Responsive Design System */
@media (max-width: 1024px) {
  .hero-full-grid,
  .simulator-container,
  .tech-content-panel,
  .image-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .simulator-container {
    padding: 28px;
  }

  .features-grid,
  .models-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .section-padding {
    padding: 60px 0;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-full-title {
    font-size: clamp(2.1rem, 7.5vw, 3rem);
    line-height: 1.18;
  }

  .hero-full-subtitle {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }

  .hero-full-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-full-btns .btn {
    width: 100%;
  }

  .simulator-container {
    padding: 20px 14px;
    border-radius: var(--radius-lg);
    gap: 24px;
  }

  .interactive-board {
    border-width: 6px;
    border-radius: 12px;
  }

  .mode-toggle-group {
    flex-direction: column;
    gap: 8px;
  }

  .mode-btn {
    width: 100%;
    padding: 12px;
    text-align: center;
    font-size: 0.88rem;
  }

  .features-grid,
  .models-grid,
  .reviews-grid,
  .footer-grid,
  .hero-specs-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2.1rem;
  }

  .modal-card {
    padding: 28px 18px;
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .simulator-container {
    padding: 14px 10px;
  }

  .interactive-board {
    border-width: 5px;
    border-radius: 10px;
  }

  .sq-coord {
    font-size: 0.55rem;
  }

  .modal-card {
    padding: 24px 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
