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

:root {
  /* Premium Dark Mode Titanium Palette */
  --bg-main: #0D0E12;
  --bg-card: #14161F;
  --bg-card-hover: #1C1F2B;
  --border-line: rgba(228, 228, 231, 0.04);
  --border-line-hover: rgba(228, 228, 231, 0.12);
  
  --text-white: #E4E4E7; /* Platinum Platin */
  --text-gray: #A1A1AA;  /* Silver Gray */
  --text-dim: #52525B;   /* Zinc Steel */
  
  --accent-orange: #ff5a00;
  --accent-orange-rgb: 255, 90, 0;
  --accent-blue: #00f0ff;
  --accent-blue-rgb: 0, 240, 255;
  --accent-purple: #7000ff;
  
  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-text: 'Plus Jakarta Sans', 'Inter', sans-serif;
  
  /* Ease Functions */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease-expo);
  --transition-normal: 0.5s var(--ease-expo);
  --transition-slow: 0.9s var(--ease-expo);
}

/* Base Editorial Layout Rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  background-color: var(--bg-main);
  color: var(--text-white);
  font-family: var(--font-text);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  filter: url(#noiseFilter);
  opacity: 0.8;
}

/* Hide Default Cursor on Desktop */
@media (pointer: fine) {
  body, html {
    cursor: none;
  }
  a, button, input, select, textarea, .ed-tab-btn, .ed-slider, .floating-circle-btn {
    cursor: none !important;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
  width: 0%;
  z-index: 10001;
  pointer-events: none;
  transition: width 0.1s linear;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-white);
}

/* Aurora background glow animation system */
.aurora-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  animation: float-slow 25s infinite alternate ease-in-out;
}

.aurora-purple {
  background: var(--accent-purple);
  width: 500px;
  height: 500px;
  top: 5%;
  left: 5%;
}

.aurora-cyan {
  background: var(--accent-blue);
  width: 450px;
  height: 450px;
  top: 35%;
  right: 5%;
  animation-delay: -5s;
}

.aurora-pink {
  background: #ff0055;
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: 15%;
  animation-delay: -10s;
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { transform: translate(80px, 50px) scale(1.15) rotate(360deg); }
}

/* Negative Space Utilities */
section {
  position: relative;
  border-bottom: 1px solid var(--border-line);
  z-index: 1;
}

.spaced-section {
  padding: 200px 0;
}

.editorial-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr;
}

/* Editorial Grid Layout Lines */
.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.grid-line-vert {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-line);
}

.line-v-25 { left: 25%; }
.line-v-50 { left: 50%; }
.line-v-75 { left: 75%; }

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--text-dim);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* Typography Styles */
.giant-title {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  text-transform: uppercase;
}

.italic-title {
  font-style: italic;
  font-weight: 500;
}

.title-fill {
  display: inline-block;
  color: white;
}

.title-outline {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  transition: var(--transition-normal);
}

.title-outline:hover {
  -webkit-text-stroke-color: var(--accent-blue);
  color: rgba(0, 240, 255, 0.05);
}

.title-italic {
  display: inline-block;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-orange);
}

.paragraph-large {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 650px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

/* Editorial Image Card & Grid (uiuxshowcase style) */
.editorial-img-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-line);
  background: var(--bg-card);
  transition: var(--transition-normal);
}

.editorial-img-wrapper:hover {
  border-color: var(--border-line-hover);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: var(--transition-slow);
}

.editorial-img-wrapper:hover .editorial-img {
  opacity: 1;
  transform: scale(1.04);
}

/* Border Glow effect */
.border-glow-orange {
  position: relative;
}
.border-glow-orange::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}
.border-glow-orange:hover::before {
  opacity: 1;
}

.border-glow-blue {
  position: relative;
}
.border-glow-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}
.border-glow-blue:hover::before {
  opacity: 1;
}

/* Buttons and Micro-interactions */
.editorial-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  z-index: 1;
}

.btn-accent {
  background: var(--accent-orange);
  color: white;
  border: 1px solid var(--accent-orange);
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: var(--transition-normal);
  z-index: -1;
}

.btn-accent:hover {
  color: var(--bg-main);
  border-color: white;
}

.btn-accent:hover::before {
  left: 0;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid var(--border-line-hover);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn-outline:hover {
  border-color: white;
}

.btn-outline:hover::before {
  width: 100%;
}

/* Custom Magnetic Cursor Styles */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  mix-blend-mode: difference;
}

.custom-cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #04060b;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover active state for cursor */
body.cursor-hover .custom-cursor {
  width: 4px;
  height: 4px;
  background-color: transparent;
}

body.cursor-hover .custom-cursor-ring {
  width: 72px;
  height: 72px;
  background-color: #ffffff;
  border-color: #ffffff;
}

body.cursor-hover .cursor-label {
  opacity: 1;
  transform: scale(1);
}

body.cursor-hover-orange .custom-cursor {
  width: 4px;
  height: 4px;
  background-color: transparent;
}

body.cursor-hover-orange .custom-cursor-ring {
  width: 72px;
  height: 72px;
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
}

body.cursor-hover-orange .cursor-label {
  opacity: 1;
  transform: scale(1);
}

body.cursor-hover-blue .custom-cursor {
  width: 4px;
  height: 4px;
  background-color: transparent;
}

body.cursor-hover-blue .custom-cursor-ring {
  width: 72px;
  height: 72px;
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
}

body.cursor-hover-blue .cursor-label {
  opacity: 1;
  transform: scale(1);
}

/* Magnetic Link Text Interaction */
.editorial-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 4px;
}

.editorial-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-expo);
}

.editorial-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.editorial-link svg {
  transition: transform 0.3s var(--ease-expo);
}

.editorial-link:hover svg {
  transform: translate(4px, -4px);
}

/* Sticky Header Custom Menu */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--border-line);
  background: rgba(4, 6, 11, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: white;
  letter-spacing: -2px;
}

.brand-logo span {
  color: var(--accent-orange);
}

.menu-items {
  display: flex;
  gap: 40px;
}

.menu-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  transition: var(--transition-fast);
}

.menu-link:hover, .menu-link.active {
  color: white;
}

/* Asymmetric Hero Section */
.hero-sec {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

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

.hero-left-art {
  padding-right: 24px;
}

.hero-left-art p {
  margin: 32px 0 48px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
}

/* Hero Right: Overlapping Dashboard Image and Tech Box */
.hero-right-visual {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-dashboard-img {
  width: 85%;
  height: 380px;
  object-fit: cover;
  border: 1px solid var(--border-line-hover);
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.hero-overlapping-box {
  width: 70%;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 1px solid var(--border-line-hover);
  background: var(--bg-card);
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.9);
  transition: var(--transition-normal);
  z-index: 5;
}

.hero-overlapping-box:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
}

.hero-overlapping-box h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-overlapping-box h3 span {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
}

.hero-overlapping-box p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Partner Trust Cloud */
.partners-cloud {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.005);
}

.partners-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.partner-text-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: var(--transition-fast);
}
.partner-text-logo:hover {
  color: white;
}

/* Editorial Grid Content (Asymmetric Details) */
.editorial-solutions-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.editorial-sticky-side {
  position: sticky;
  top: 160px;
  height: fit-content;
}

.solutions-flow {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Alternating & Overlapping Cards */
.flow-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(20, 22, 31, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 48px;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.flow-card:hover {
  border-color: rgba(255, 90, 0, 0.3);
  background: rgba(28, 31, 43, 0.85);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 90, 0, 0.05);
}

.flow-card-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.02);
  position: absolute;
  top: 24px;
  right: 24px;
  transition: var(--transition-normal);
}

.flow-card:hover .flow-card-num {
  color: rgba(255, 90, 0, 0.08);
}

.flow-card h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.flow-card h3 span {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
}

.flow-card p {
  color: var(--text-gray);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Tab Switcher - Sleek Styling */
.editorial-tab-switcher {
  display: inline-flex;
  border: 1px solid var(--border-line);
  padding: 4px;
  margin-bottom: 32px;
}

.ed-tab-btn {
  background: transparent;
  border: none;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition-fast);
}

.ed-tab-btn.active {
  background: white;
  color: var(--bg-main);
}

.ed-tab-content {
  display: none;
}
.ed-tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Zadara Section Refactor */
.zadara-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
}

.zadara-spec-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.zadara-spec-item {
  border-bottom: 1px solid var(--border-line);
  padding-bottom: 24px;
}

.zadara-spec-item h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: white;
}

.zadara-spec-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Elegant Calculator */
.calc-editorial-panel {
  border: 1px solid var(--border-line);
  background: var(--bg-card);
  padding: 48px;
  border-radius: 2px;
  position: relative;
  z-index: 5;
}

.calc-editorial-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent var(--accent-orange) transparent;
}

.slider-container {
  margin-bottom: 32px;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.slider-label span:last-child {
  color: var(--accent-orange);
}

.ed-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: var(--border-line-hover);
  outline: none;
}

.ed-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--accent-orange);
  cursor: pointer;
  transition: var(--transition-fast);
}
.ed-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.calc-output-block {
  border-top: 1px solid var(--border-line);
  padding-top: 32px;
  margin-top: 32px;
}

/* Savings Graph Styles */
.savings-graph-container {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.graph-bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.graph-bar-lbl {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.graph-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.graph-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px currentColor;
}

.bar-std {
  background: var(--text-dim);
  color: var(--text-dim);
}

.bar-zadara {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
  color: var(--accent-orange);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.calc-output-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calc-out-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-gray);
}

.calc-out-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}

.calc-out-val.highlight {
  font-size: 2.2rem;
  color: var(--accent-orange);
  text-shadow: 0 0 20px rgba(255, 90, 0, 0.15);
}

/* Partnership Brutalist Cards */
.partner-asymmetric-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
}

.partner-editorial-card {
  border: 1px solid var(--border-line);
  background: var(--bg-card);
  padding: 48px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-editorial-card:hover {
  border-color: var(--border-line-hover);
  background: var(--bg-card-hover);
  transform: translateY(-8px);
}

.partner-logo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.partner-title-large {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.partner-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.partner-bullet-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.partner-bullet-text svg {
  color: var(--accent-orange);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Trust Story / Success Case Page Layout */
.case-asymmetric-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.case-left-visual {
  border: 1px solid var(--border-line);
  position: relative;
  overflow: hidden;
  height: 380px;
}

/* Contact Form Editoryal Minimalist Styling */
.contact-editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contact-form-block {
  border: 1px solid var(--border-line);
  background: var(--bg-card);
  padding: 48px;
  z-index: 5;
}

.form-input-line {
  position: relative;
  margin-bottom: 36px;
}

.form-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-line-hover);
  padding: 12px 0;
  color: white;
  font-family: var(--font-text);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-field:focus {
  border-color: white;
}

.form-label-float {
  position: absolute;
  top: 12px;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-field:focus + .form-label-float, 
.form-field:not(:placeholder-shown) + .form-label-float {
  top: -12px;
  font-size: 0.7rem;
  color: var(--accent-orange);
}

/* Bottom Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-circle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-line-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.floating-circle-btn:hover {
  background: white;
  color: var(--bg-main);
  transform: translateY(-4px);
}

/* Footer Editorial */
footer {
  background: #020306;
  padding: 100px 0 60px;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-column h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.footer-text-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-text-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-gray);
  transition: var(--transition-fast);
}
.footer-text-link:hover {
  color: white;
}

.footer-bottom-row {
  border-top: 1px solid var(--border-line);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Simple Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Editorial Adjustments */
@media (max-width: 1024px) {
  .hero-asymmetric-grid, 
  .editorial-solutions-layout, 
  .zadara-editorial-grid, 
  .partner-asymmetric-split, 
  .case-asymmetric-layout, 
  .contact-editorial-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .editorial-sticky-side {
    position: relative;
    top: 0;
  }
  
  .hero-left-art {
    padding-right: 0;
  }
  
  .hero-right-visual {
    height: 400px;
  }
  
  .hero-dashboard-img {
    height: 300px;
  }
  
  .spaced-section {
    padding: 100px 0;
  }
  
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .menu-items {
    display: none;
  }
  .giant-title {
    font-size: 2.5rem;
  }
  .editorial-container {
    padding: 0 24px;
  }
}

/* Asymmetric Desktop Offset Layouts (Apple/Awwwards style) */
@media (min-width: 1025px) {
  .solutions-flow .flow-card:nth-child(even) {
    margin-left: 48px;
    margin-right: -48px;
    margin-top: 24px;
  }
  
  .partner-asymmetric-split .partner-editorial-card:nth-child(even) {
    margin-top: 80px;
    margin-bottom: -80px;
  }

  .case-asymmetric-layout .case-left-visual {
    transform: translateX(-24px);
  }
}

/* Architecture Grid & Cards (Apple/Awwwards at a Glance) */
.mimari-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.mimari-card {
  border: 1px solid var(--border-line);
  background: var(--bg-card);
  padding: 40px;
  position: relative;
  transition: var(--transition-normal);
}

.mimari-card:hover {
  border-color: var(--border-line-hover);
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.02);
}

.mimari-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(228, 228, 231, 0.02);
  position: absolute;
  top: 20px;
  right: 20px;
}

.mimari-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--text-white);
}

.mimari-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.mimari-bullets li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white);
  position: relative;
  padding-left: 16px;
}

.mimari-bullets li::before {
  content: "•";
  color: var(--accent-orange);
  position: absolute;
  left: 0;
}

/* Sensor CTA formatting */
.flow-card-actions {
  margin-top: 24px;
  border-top: 1px solid var(--border-line);
  padding-top: 16px;
  display: flex;
  justify-content: flex-start;
}

.sensor-cta {
  font-size: 0.8rem !important;
  color: var(--accent-orange) !important;
}

.sensor-cta:hover {
  color: white !important;
}

@media (max-width: 1024px) {
  .mimari-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===================================================
   SENSOR CATALOG FILTER SYSTEM
   =================================================== */
.sensor-catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-line);
}

.sensor-filter-btn {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 8px 16px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-gray) !important;
  cursor: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border-radius: 4px;
  white-space: nowrap;
}

.sensor-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-white) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.sensor-filter-btn.active {
  background: var(--accent-orange) !important;
  border-color: var(--accent-orange) !important;
  color: #fff !important;
}

/* ===================================================
   CATALOG SENSOR GRID
   =================================================== */
.catalog-sensor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sensor-cat-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(20, 22, 31, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 24px 24px;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.sensor-cat-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(28, 31, 43, 0.85);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 240, 255, 0.05);
}

/* Image wrappers styling inside product cards for contain behavior and custom gradient background */
.sensor-cat-card .editorial-img-wrapper,
.flow-card .editorial-img-wrapper {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sensor-cat-card .editorial-img,
.flow-card .editorial-img {
  object-fit: contain !important;
  padding: 12px;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  transition: transform 0.5s var(--ease-expo), opacity 0.5s var(--ease-expo);
}

.sensor-cat-card:hover .editorial-img,
.flow-card:hover .editorial-img {
  opacity: 1;
  transform: scale(1.05);
}

.sensor-cat-card[style*="display: none"] {
  display: none !important;
}

.sensor-cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.sensor-cat-card h3 span {
  width: 5px;
  height: 5px;
  background: var(--accent-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Category Badges */
.sensor-cat-badge {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 1px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

.sensor-cat-badge.hava {
  background: rgba(0,240,255,0.08);
  color: var(--accent-blue);
  border: 1px solid rgba(0,240,255,0.18);
}
.sensor-cat-badge.kisi {
  background: rgba(112,0,255,0.1);
  color: #a855f7;
  border: 1px solid rgba(112,0,255,0.22);
}
.sensor-cat-badge.sicaklik {
  background: rgba(255,90,0,0.1);
  color: var(--accent-orange);
  border: 1px solid rgba(255,90,0,0.22);
}
.sensor-cat-badge.seviye {
  background: rgba(0,240,255,0.06);
  color: #67e8f9;
  border: 1px solid rgba(0,240,255,0.14);
}
.sensor-cat-badge.enerji {
  background: rgba(255,90,0,0.1);
  color: var(--accent-orange);
  border: 1px solid rgba(255,90,0,0.22);
}
.sensor-cat-badge.ag {
  background: rgba(228,228,231,0.05);
  color: var(--text-gray);
  border: 1px solid rgba(228,228,231,0.1);
}

/* Model Tags */
.sensor-model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.sensor-model-tags span {
  font-family: var(--font-text);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-gray);
  border-radius: 3px;
  white-space: nowrap;
  display: inline-flex;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sensor-model-tags span:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Spec List */
.sensor-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 16px;
  flex: 1;
}

.sensor-spec-list li {
  padding-left: 14px;
  position: relative;
  line-height: 1.55;
}

.sensor-spec-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 700;
}

.sensor-spec-list li strong {
  color: var(--text-white);
  font-weight: 600;
}

/* Dual CTA Row */
.sensor-cta-double {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-line);
  flex-wrap: wrap;
}

/* WhatsApp Inline Button */
.sensor-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #25d366 !important;
  border: 1px solid rgba(37, 211, 102, 0.35) !important;
  padding: 5px 12px;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
}

.sensor-wa-btn:hover {
  background: rgba(37, 211, 102, 0.1) !important;
  border-color: #25d366 !important;
  color: #25d366 !important;
  transform: translateY(-1px);
}

/* Drivee Image Gallery */
.drivee-img-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drivee-img-row {
  display: flex;
  gap: 8px;
}

.drivee-img-row .editorial-img-wrapper {
  border-radius: 2px;
  overflow: hidden;
}

/* Flow card action with gap for WA button */
.flow-card-actions {
  margin-top: 24px;
  border-top: 1px solid var(--border-line);
  padding-top: 16px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Responsive: single column catalog on smaller screens */
@media (max-width: 1280px) {
  .catalog-sensor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sensor-catalog-filters {
    gap: 6px;
  }
  .sensor-filter-btn {
    font-size: 0.62rem;
    padding: 6px 10px;
  }
  .drivee-img-row {
    flex-direction: column;
  }
}

