/* ==========================================================================
   Design System & Main Styles
   SONIKO Authorized Service Center (soniko.uz)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Dark Theme (Default) — Official De'Longhi Brand Colors */
  --bg-main: #0b1120;
  --bg-card: rgba(16, 36, 62, 0.65);
  --bg-card-hover: rgba(22, 48, 80, 0.85);
  --bg-elevated: #10243E;
  --bg-glass: rgba(11, 17, 32, 0.7);
  
  --border-subtle: rgba(106, 176, 223, 0.12);
  --border-focus: rgba(255, 130, 0, 0.6);
  --border-gold: rgba(255, 130, 0, 0.35);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-white: #ffffff;

  /* De'Longhi Official: Warm Orange #F28333, Deep Navy #10243E, Sky Blue #6AB0DF */
  --accent-gold: #FF8200;
  --accent-gold-hover: #ff9a33;
  --accent-gold-subtle: rgba(255, 130, 0, 0.12);
  
  --accent-blue: #6AB0DF;
  --accent-blue-hover: #89c3e8;
  --accent-blue-subtle: rgba(106, 176, 223, 0.14);

  --accent-teal: #0d9488;
  --accent-emerald: #10b981;
  --accent-telegram: #229ED9;

  /* Typography & Layout */
  --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --max-width: 1240px;
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Shadows & Glows */
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow-gold: 0 0 30px -5px rgba(255, 130, 0, 0.3);
  --shadow-glow-blue: 0 0 30px -5px rgba(106, 176, 223, 0.25);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Light Theme Override Variables
   ========================================================================== */
[data-theme="light"] {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.92);

  --border-subtle: #e2e8f0;
  --border-focus: rgba(230, 117, 0, 0.5);
  --border-gold: rgba(230, 117, 0, 0.3);

  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-white: #0f172a;

  --accent-gold: #e67500;
  --accent-gold-hover: #cc6800;
  --accent-gold-subtle: rgba(230, 117, 0, 0.08);

  --accent-blue: #2b7bb5;
  --accent-blue-hover: #1f6494;
  --accent-blue-subtle: rgba(43, 123, 181, 0.08);

  --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-glow-gold: 0 4px 20px rgba(230, 117, 0, 0.18);
  --shadow-glow-blue: 0 4px 20px rgba(43, 123, 181, 0.12);
}

[data-theme="light"] body {
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(106, 176, 223, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 85% 25%, rgba(255, 130, 0, 0.02) 0%, transparent 45%);
}

[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: #e2e8f0;
}

[data-theme="light"] .hero-title span.highlight {
  background: linear-gradient(135deg, #0f172a 40%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .delonghi-showcase {
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  border-top-color: #e2e8f0;
  border-bottom-color: #e2e8f0;
}

[data-theme="light"] .policy-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

[data-theme="light"] .glass-card-hero,
[data-theme="light"] .consult-container {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .model-item {
  background: #f8fafc;
  border-color: #e2e8f0;
}

[data-theme="light"] .model-item:hover {
  background: #ffffff;
  border-color: var(--border-gold);
}

/* Light Mode Brand Cards Redesign */
[data-theme="light"] .brand-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .brand-card:hover {
  background: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .brand-card.featured {
  background: linear-gradient(180deg, rgba(255, 130, 0, 0.04) 0%, #ffffff 100%);
  border-color: rgba(255, 130, 0, 0.3);
}

[data-theme="light"] .brand-card-logo {
  color: #0f172a;
}

[data-theme="light"] .brand-card-role {
  color: #475569;
}

[data-theme="light"] .form-group label {
  color: #0f172a;
}

[data-theme="light"] .form-control {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .form-control:focus {
  background: #ffffff;
  border-color: #FF8200;
  color: #0f172a;
  box-shadow: 0 0 0 3px rgba(255, 130, 0, 0.18);
}

[data-theme="light"] .form-control::placeholder {
  color: #94a3b8;
}

[data-theme="light"] .form-control option {
  background: #ffffff;
  color: #0f172a;
}

[data-theme="light"] .form-note {
  color: #64748b;
}

[data-theme="light"] .map-placeholder-box {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
}

[data-theme="light"] .map-placeholder-box h3 {
  color: #0f172a !important;
}

[data-theme="light"] .modal-dialog {
  background: #ffffff;
  border-color: #e2e8f0;
}

[data-theme="light"] .site-footer {
  background: #090d16;
  color: #94a3b8;
}

[data-theme="light"] .site-footer .logo-title,
[data-theme="light"] .site-footer .footer-col h4,
[data-theme="light"] .site-footer .footer-bottom {
  color: #ffffff !important;
}

[data-theme="light"] .site-footer p,
[data-theme="light"] .site-footer .footer-links a {
  color: #94a3b8;
}

[data-theme="light"] .theme-toggle-btn {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

[data-theme="light"] .lang-switcher {
  background: #f1f5f9;
  border-color: #e2e8f0;
}

[data-theme="light"] .lang-btn {
  color: #475569;
}

[data-theme="light"] .lang-btn.active {
  background: var(--accent-gold);
  color: #ffffff;
}

[data-theme="light"] .tab-btn {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #475569;
}

[data-theme="light"] .tab-btn.active {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
}

[data-theme="light"] .mobile-sticky-bar {
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #e2e8f0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 118.75%; /* Crisp, large readable default scale (~120-125%) on desktop */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(106, 176, 223, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 25%, rgba(255, 130, 0, 0.04) 0%, transparent 45%);
  background-attachment: fixed;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

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

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Redesigned Compact SONIKO Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #FF8200, #e67500);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  box-shadow: 0 3px 12px rgba(255, 130, 0, 0.4);
  letter-spacing: -0.02em;
}

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

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.68rem;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav Links - Fixed Height & Uniform Line */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: 8px 0;
  white-space: nowrap;
  line-height: 1;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link.highlight {
  color: #59aee4;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-link.highlight:hover {
  color: #7ec2ee;
}

.nav-coffee-icon {
  display: inline-block;
  vertical-align: middle;
  color: #59aee4;
  transition: transform var(--transition-fast);
}

.nav-link.highlight:hover .nav-coffee-icon {
  transform: rotate(20deg) scale(1.15);
  color: #7ec2ee;
}

.badge-coffee-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  color: var(--accent-gold);
}

.mobile-nav-footer {
  display: none;
}

/* Header Controls */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: var(--text-white);
}

.lang-btn.active {
  background: var(--accent-gold);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 130, 0, 0.4);
}

/* Header Action Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: linear-gradient(135deg, #FF8200, #e67500);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 130, 0, 0.35);
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff9a33, #FF8200);
  box-shadow: var(--shadow-glow-gold);
  transform: translateY(-2px);
}

.btn-telegram {
  background: linear-gradient(135deg, #2aabee, #229ed9);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(34, 158, 217, 0.28);
}

.btn-telegram:hover {
  background: linear-gradient(135deg, #3db9f6, #2aabee);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 158, 217, 0.4);
}

.btn-outline {
  background: rgba(89, 174, 228, 0.08);
  border-color: rgba(89, 174, 228, 0.35);
  color: #59aee4;
}

.btn-outline:hover {
  background: rgba(89, 174, 228, 0.18);
  border-color: rgba(89, 174, 228, 0.5);
  color: #7ec2ee;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  padding: 7px;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section with De'Longhi La Specialista Machine Backdrop
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background-image: url('../assets/delonghi_la_specialista.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.32;
  mask-image: radial-gradient(circle at 65% 50%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 65% 50%, black 30%, transparent 85%);
  pointer-events: none;
}

[data-theme="light"] .hero-bg-overlay {
  opacity: 0.16;
}

/* ==========================================================================
   Section Background Overlays (De'Longhi, Braun Steam Blast, Layered Cappuccino)
   ========================================================================== */
.section-bg-overlay {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

/* Authorized Brands Section: Braun CareStyle & Kenwood Mixer Backdrop */
.authorized-section-overlay {
  right: 0;
  width: 60%;
  background-image: url('../assets/images/braun-carestyle-bg.jpg');
  background-position: center right;
  opacity: 0.24;
  mask-image: radial-gradient(circle at 65% 50%, black 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 65% 50%, black 25%, transparent 85%);
}

[data-theme="light"] .authorized-section-overlay {
  opacity: 0.14;
  mix-blend-mode: multiply;
}

/* De'Longhi Section: Crisp Macro Roasted Coffee Beans Backdrop */
.delonghi-showcase .section-bg-overlay {
  left: 0;
  width: 52%;
  height: 100%;
  background-image: url('../assets/coffee_beans_bokeh.jpg');
  background-position: left center;
  background-size: cover;
  opacity: 0.40;
  mask-image: radial-gradient(circle at 35% 50%, black 35%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at 35% 50%, black 35%, transparent 88%);
}

[data-theme="light"] .delonghi-showcase .section-bg-overlay {
  opacity: 0.25;
  mix-blend-mode: multiply;
}

/* Services Section: Braun CareStyle with Dramatic Steam Blast Backdrop */
.services-section-overlay {
  right: 0;
  width: 55%;
  background-image: url('../assets/braun_steam_blast.jpg');
  background-position: center right;
  opacity: 0.30;
  mask-image: radial-gradient(circle at 65% 50%, black 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 65% 50%, black 25%, transparent 85%);
}

[data-theme="light"] .services-section-overlay {
  opacity: 0.16;
  mix-blend-mode: multiply;
}

/* Workflow Section: Layered Cappuccino Glass Backdrop */
.workflow-section-overlay {
  right: 0;
  width: 55%;
  background-image: url('../assets/layered_cappuccino_glass.jpg');
  background-position: center right;
  opacity: 0.28;
  mask-image: radial-gradient(circle at 65% 50%, black 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 65% 50%, black 25%, transparent 85%);
}

[data-theme="light"] .workflow-section-overlay {
  opacity: 0.15;
  mix-blend-mode: multiply;
}

/* FAQ Section: De'Longhi Premium Coffee Machine Backdrop */
.faq-section-overlay {
  right: 0;
  width: 55%;
  background-image: url('../assets/images/delonghi-bg.jpg');
  background-position: center right;
  opacity: 0.24;
  mask-image: radial-gradient(circle at 65% 50%, black 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 65% 50%, black 25%, transparent 85%);
}

[data-theme="light"] .faq-section-overlay {
  opacity: 0.12;
  mix-blend-mode: multiply;
}

/* Contacts Section: Hikvision Security Camera Backdrop */
.contacts-section-overlay {
  right: 0;
  background-image: url('../assets/images/hikvision-camera-bg.jpg');
  background-position: center right;
  opacity: 0.25;
  mask-image: radial-gradient(circle at 70% 50%, black 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 70% 50%, black 25%, transparent 85%);
}

[data-theme="light"] .contacts-section-overlay {
  opacity: 0.14;
  mix-blend-mode: multiply;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold-subtle);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-badge-icon {
  color: var(--accent-gold);
}

.hero-badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.01em;
  word-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 18px;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, #ffffff 35%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Hero Trust Stats / Badges */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.feature-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--bg-card-hover);
}

.feature-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-gold {
  background: var(--accent-gold-subtle);
  color: var(--accent-gold);
}

.icon-blue {
  background: var(--accent-blue-subtle);
  color: var(--accent-blue);
}

.icon-teal {
  background: rgba(13, 148, 136, 0.12);
  color: var(--accent-teal);
}

.icon-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.schedule-row {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.schedule-row.schedule-closed {
  color: #ef4444;
  font-weight: 500;
}

[data-theme="light"] .schedule-row {
  color: #475569;
}

[data-theme="light"] .schedule-row.schedule-closed {
  color: #dc2626;
}

.site-footer .schedule-row {
  color: #94a3b8 !important;
}

.site-footer .schedule-row.schedule-closed {
  color: #f87171 !important;
}

.feature-content h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}

.feature-content p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Hero Right Side Graphic Card */
.glass-card-hero {
  background: linear-gradient(145deg, rgba(24, 32, 50, 0.85), rgba(15, 21, 35, 0.92));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

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

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

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.visual-models-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.model-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 12, 19, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: all var(--transition-fast);
}

.model-item:hover {
  border-color: var(--border-gold);
  background: rgba(9, 12, 19, 0.9);
}

.model-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.model-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-white);
}

.model-tag {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.auth-stamp {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--accent-gold-subtle);
  color: var(--accent-gold);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-gold);
  white-space: nowrap;
}

/* ==========================================================================
   Authorized Brands Section
   ========================================================================== */
.section {
  padding: 72px 0;
  position: relative;
}

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

.section-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  background: var(--accent-gold-subtle);
  border: 1px solid var(--border-gold);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.01em;
  word-spacing: 0.08em;
  line-height: 1.34;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}

.brand-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(201, 151, 87, 0.08) 0%, rgba(18, 24, 38, 0.85) 100%);
}

.brand-card-logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   Flagship De'Longhi Section
   ========================================================================== */
.delonghi-showcase {
  background: linear-gradient(180deg, rgba(15, 21, 35, 0.6) 0%, rgba(10, 13, 20, 0.95) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

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

.delonghi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition-smooth);
}

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

.delonghi-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-subtle);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.delonghi-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.delonghi-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Services & Equipment Tabs / Catalog
   ========================================================================== */
.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.srv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

.srv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow-blue);
}

.srv-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--accent-blue-subtle);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.srv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.srv-brands {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.srv-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Honest Policy & Principles
   ========================================================================== */
.policy-section {
  background: linear-gradient(180deg, rgba(10, 13, 20, 0.92) 0%, rgba(18, 24, 38, 0.6) 100%);
}

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

.policy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
}

.policy-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.policy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.35;
}

.policy-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Workflow Steps
   ========================================================================== */
.workflow-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.workflow-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  transition: all var(--transition-smooth);
}

.workflow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card-hover);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.9;
}

.workflow-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

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

/* ==========================================================================
   Consultation Pre-check Form
   ========================================================================== */
.consult-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(24, 32, 50, 0.85), rgba(15, 21, 35, 0.95));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-control {
  background: rgba(16, 36, 62, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--text-white);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(255, 130, 0, 0.2);
  background: rgba(16, 36, 62, 0.9);
  color: var(--text-white);
  outline: none;
}

.form-control option {
  background: #10243E;
  color: #ffffff;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.phone-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.phone-prefix-badge {
  position: absolute;
  left: 14px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent-gold);
  pointer-events: none;
  z-index: 2;
  user-select: none;
  line-height: 1;
}

.phone-input-field {
  padding-left: 60px !important;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   FAQ Section (AI GEO & Rich Snippet)
   ========================================================================== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.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-gold);
  background: var(--bg-card-hover);
}

.faq-question {
  padding: 20px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--accent-gold);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

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

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

/* ==========================================================================
   Contacts & Location Section
   ========================================================================== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-subtle);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-details p, .contact-details a {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.5;
  white-space: pre-line;
}

.contact-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.btn-nav-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.btn-yandex {
  background: rgba(252, 63, 29, 0.1);
  color: #ff5c42;
  border-color: rgba(252, 63, 29, 0.25);
}

.btn-yandex:hover {
  background: rgba(252, 63, 29, 0.2);
  transform: translateY(-2px);
}

.btn-2gis {
  background: rgba(0, 185, 86, 0.1);
  color: #00c95d;
  border-color: rgba(0, 185, 86, 0.25);
}

.btn-2gis:hover {
  background: rgba(0, 185, 86, 0.2);
  transform: translateY(-2px);
}

.btn-google {
  background: rgba(66, 133, 244, 0.1);
  color: #60a5fa;
  border-color: rgba(66, 133, 244, 0.25);
}

.btn-google:hover {
  background: rgba(66, 133, 244, 0.2);
  transform: translateY(-2px);
}

.map-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  height: 460px;
  overflow: hidden;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-floating-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  z-index: 5;
  pointer-events: none;
}

[data-theme="light"] .map-floating-badge {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.map-floating-pin {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-gold-subtle);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   Footer (Consistent Premium Dark Styling in Both Themes)
   ========================================================================== */
.site-footer,
[data-theme="light"] .site-footer {
  background: #07090f !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 54px 0 28px;
  color: #94a3b8 !important;
}

.site-footer .brand-logo .logo-title,
[data-theme="light"] .site-footer .brand-logo .logo-title,
.site-footer .logo-title,
[data-theme="light"] .site-footer .logo-title,
.site-footer .footer-col h4,
[data-theme="light"] .site-footer .footer-col h4,
.site-footer h4,
[data-theme="light"] .site-footer h4 {
  color: #ffffff !important;
}

.site-footer .brand-logo .logo-subtitle,
[data-theme="light"] .site-footer .brand-logo .logo-subtitle {
  color: var(--accent-gold) !important;
}

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

.footer-brand p,
[data-theme="light"] .footer-brand p,
.site-footer .footer-col p,
[data-theme="light"] .site-footer .footer-col p {
  font-size: 0.88rem;
  color: #94a3b8 !important;
  margin-top: 12px;
  max-width: 380px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 16px;
}

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

.footer-links a,
[data-theme="light"] .footer-links a {
  font-size: 0.86rem;
  color: #94a3b8 !important;
  transition: color var(--transition-fast);
}

.footer-links a:hover,
[data-theme="light"] .footer-links a:hover {
  color: var(--accent-gold) !important;
}

.footer-bottom,
[data-theme="light"] .footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #64748b !important;
}

.footer-bottom p,
[data-theme="light"] .footer-bottom p {
  color: #64748b !important;
}

/* ==========================================================================
   Mobile Floating Action Bar
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 9px 14px;
  z-index: 999;
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-dialog {
  background: #111622;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 34px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-glow-gold);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.modal-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
}
