/* 
===============================================
   Scare-Crow Productions - Production Studio CSS
   Theme: Studio Minimal X (White, Soft Grey, Black)
===============================================
*/

:root {
  /* Colors */
  --color-bg: #ffffff;
  --color-surface: #f4f4f4;
  --color-surface-alt: #e0e0e0;
  --color-text: #0a0a0a;
  --color-text-muted: #555555;
  --color-accent: #000000;
  --color-white: #ffffff;

  /* Typography */
  --font-heading: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --container-max: 1300px;
  --section-padding: clamp(4rem, 8vw, 8rem);

  /* Animations */
  --ease-out-expo: 0.16, 1, 0.3, 1;
  --transition-fast: 0.3s cubic-bezier(var(--ease-out-expo));
  --transition-slow: 0.8s cubic-bezier(var(--ease-out-expo));
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial; /* Handled by custom JS if needed, but smooth css native is fallback */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* Custom Cursor enabled */
}

/* Prevent scroll during load */
body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}

.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.8s var(--transition-slow),
    visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
  width: 300px;
}

.preloader-logo {
  height: 40px;
  margin: 0 auto 2rem;
  filter: invert(
    1
  ); /* Assuming white logo provided, invert for minimal theme */
}

.preloader-progress {
  width: 100%;
  height: 2px;
  background: var(--color-surface-alt);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  transition: width 0.1s linear;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.bg-light {
  background-color: var(--color-surface);
}
.bg-dark {
  background-color: var(--color-text);
  color: var(--color-bg);
}
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--color-text-muted);
}
.mt-4 {
  margin-top: 2rem;
}
.w-full {
  width: 100%;
}
.relative {
  position: relative;
}
.z-10 {
  z-index: 10;
}

.max-w-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Typography Classes */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.bg-dark .section-subtitle {
  color: #aaaaaa;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  border: none;
  outline: none;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-text-muted);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(var(--ease-out-expo));
  z-index: 1;
  border-radius: 50px;
}

.btn:hover .btn-bg {
  transform: scaleY(1);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-surface-alt);
  color: var(--color-text);
}
.btn-secondary .btn-bg {
  background-color: var(--color-surface);
}
.btn-secondary:hover {
  color: var(--color-text);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-text);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Global Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition:
    padding 0.3s ease,
    background 0.3s ease,
    border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-surface-alt);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 60px;
  /* filter: invert(1); Assuming white logo provided */
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: none;
}

.hamburger .bar {
  width: 30px;
  height: 2px;
  background: var(--color-accent);
  transition: 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.5;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--color-surface-alt);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: #d4d4d4;
  bottom: 10%;
  left: -50px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-surface-alt);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.line-wrap {
  display: block;
  overflow: hidden;
}

.line-inner {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abstract-orb {
  position: relative;
  width: 300px;
  height: 300px;
}

.orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.orb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.ring-1 {
  width: 200px;
  height: 200px;
  animation: spin 10s linear infinite;
  border-top-color: var(--color-accent);
}
.ring-2 {
  width: 300px;
  height: 300px;
  animation: spin 15s linear infinite reverse;
  border-right-color: var(--color-accent);
}
.ring-3 {
  width: 400px;
  height: 400px;
  animation: spin 20s linear infinite;
  border-bottom-color: var(--color-text-muted);
}

/* Marquee Ticker */
.ticker-section {
  padding: 2rem 0;
  background: var(--color-accent);
  color: var(--color-white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.ticker-wrapper {
  width: 100%;
  display: flex;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.ticker-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ticker-separator {
  margin: 0 2rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-stats-container {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.about-desc-col .lead-text {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.about-desc-col p {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}

.inline-link {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  transition: gap 0.3s;
}

.inline-link:hover {
  gap: 15px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-bg);
  padding: 3rem;
  border: 1px solid var(--color-surface-alt);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--color-surface);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.service-icon {
  width: 30px;
  height: 30px;
  color: var(--color-accent);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-surface);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.service-features li:last-child {
  border-bottom: none;
}

/* Interactive Calculator */
.calc-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-alt);
  padding: 4rem;
  border-radius: 20px;
}

.calc-header {
  text-align: center;
  margin-bottom: 3rem;
}

.calc-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
}

.calc-select {
  width: 100%;
  padding: 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-surface-alt);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.highlight-text {
  color: var(--color-text-muted);
  font-weight: 700;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--color-surface-alt);
  border-radius: 5px;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.result-card {
  background: var(--color-bg);
  padding: 1.5rem;
  border: 1px solid var(--color-surface-alt);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.result-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 5rem;
  opacity: 0.03;
}

.result-card h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.result-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
}

.result-subtext {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.highlight-card {
  background: var(--color-accent);
  color: var(--color-white);
}

.highlight-card h4,
.highlight-card .result-subtext {
  color: rgba(255, 255, 255, 0.7);
}

.calc-footer {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-surface-alt);
  padding-top: 2rem;
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 60%;
}

/* Dashboard Mockup Section */
.dashboard-mockup {
  background: #111;
  border: 1px solid #333;
  border-radius: 15px;
  display: flex;
  overflow: hidden;
  height: 600px;
  margin-top: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.dash-sidebar {
  width: 250px;
  background: #0a0a0a;
  padding: 2rem;
  border-right: 1px solid #222;
}

.dash-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3rem;
}

.dash-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-nav li {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.3s,
    color 0.3s;
}

.dash-nav li:hover,
.dash-nav li.active {
  background: #222;
  color: #fff;
}

.dash-main {
  flex-grow: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dash-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
  padding-bottom: 1rem;
}

.dash-title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.dash-date {
  color: #888;
  font-size: 0.9rem;
}

.dash-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dash-stat {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #222;
}

.stat-title {
  color: #888;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.stat-val {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-change {
  font-size: 0.85rem;
}
.stat-change.positive {
  color: #4caf50;
}
.stat-change.negative {
  color: #f44336;
}

.dash-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  flex-grow: 1;
}

.dash-chart-container {
  background: #1a1a1a;
  border-radius: 10px;
  border: 1px solid #222;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.chart-header {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.html-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  justify-content: center;
}

.bar-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bar-label {
  width: 60px;
  font-size: 0.85rem;
  color: #888;
}
.bar-track {
  flex-grow: 1;
  height: 8px;
  background: #222;
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: #fff;
  transform-origin: left;
  animation: scaleX 1.5s var(--ease-out-expo) forwards;
}
.bar-val {
  width: 40px;
  font-size: 0.85rem;
  text-align: right;
}

.html-line-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  padding-top: 2rem;
}

.html-line-chart .col {
  width: 30px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.html-line-chart .col-bar {
  width: 100%;
  background: #333;
  border-radius: 4px 4px 0 0;
  transition: background 0.3s;
  transform-origin: bottom;
  animation: scaleY 1.5s var(--ease-out-expo) forwards;
}

.html-line-chart .col:hover .col-bar {
  background: #fff;
}

/* Industry Section */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.accordion-item {
  border-bottom: 1px solid var(--color-surface-alt);
  margin-bottom: 1rem;
}

.accordion-header {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.accordion-inner {
  padding-bottom: 1.5rem;
  color: var(--color-text-muted);
}

.visual-stack {
  position: relative;
  height: 400px;
}

.stack-card {
  position: absolute;
  width: 80%;
  padding: 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-surface-alt);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.card-1 {
  top: 10%;
  right: 0;
  z-index: 3;
}
.card-2 {
  top: 30%;
  right: 10%;
  z-index: 2;
  transform: scale(0.95);
  opacity: 0.8;
}
.card-3 {
  top: 50%;
  right: 20%;
  z-index: 1;
  transform: scale(0.9);
  opacity: 0.6;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-bg);
  padding: 3rem 2rem;
  border: 1px solid var(--color-surface-alt);
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--color-surface-alt);
  margin-bottom: 1.5rem;
}

.test-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 2rem;
  min-height: 120px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-surface);
  overflow: hidden;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-muted);
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* CTA & Chat Bubble */
.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.live-chat-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/* Page Headers (Contact, Legal) */
.page-header {
  position: relative;
  padding: 180px 0 100px;
  background: var(--color-surface);
  overflow: hidden;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-subheading {
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: var(--color-surface);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--color-accent);
}

.info-text h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.3rem;
}

.info-text p,
.info-text a {
  color: var(--color-text-muted);
}

/* Forms */
.custom-form .form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.input-group {
  position: relative;
  flex: 1;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid var(--color-surface-alt);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.input-group label {
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: var(--color-accent);
}

.input-group input:focus ~ label,
.input-group textarea:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--color-accent);
}

.textarea-group {
  margin-bottom: 2rem;
}

/* Legal Pages */
.legal-box {
  background: var(--color-bg);
  padding: 4rem;
  border: 1px solid var(--color-surface-alt);
  border-radius: 10px;
}

.legal-box h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.legal-box p {
  margin-bottom: 1.2rem;
  color: var(--color-text-muted);
}

/* Footer */
.footer {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 5rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: invert(1);
}

.footer-about p {
  color: #aaaaaa;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    background 0.3s,
    color 0.3s;
}

.footer-social a:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}

.footer-links h3,
.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #aaaaaa;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--color-bg);
}

.footer-contact ul li {
  display: flex;
  gap: 10px;
  color: #aaaaaa;
}

.footer-contact ul li i {
  margin-top: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--color-bg);
}

/* Animations & Keyframes */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scaleX {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes scaleY {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

/* Reveal Classes */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .about-grid,
  .industry-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 300px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .dash-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .header-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid,
  .calc-body,
  .dash-grid-top,
  .dash-grid-bottom,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .custom-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .legal-box {
    padding: 2rem;
  }

  .calc-wrapper {
    padding: 2rem;
  }
}
