/* ==========================================================================
   AWARDS-TIER BRAND PALETTE & VARIABLE DEFINITIONS
   ========================================================================== */
:root {
  --bg-darkest: #040406;
  --bg-dark: #09090e;
  --bg-card: rgba(15, 15, 24, 0.7);
  --bg-card-hover: rgba(22, 22, 38, 0.95);
  --primary: #6366f1; /* Cyber Indigo */
  --primary-glow: rgba(99, 102, 241, 0.15);
  --primary-bright: #818cf8;
  --secondary: #06b6d4; /* Neon Cyan */
  --secondary-glow: rgba(6, 182, 212, 0.15);
  --text-white: #f8fafc;
  --text-muted: #94a3b8;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(99, 102, 241, 0.4);
  --font-heading: "Orbitron", system-ui, -apple-system, sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-darkest);
  color: var(--text-white);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--text-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  position: relative;
  overflow: hidden;
}

.section-padding {
  padding: 8rem 0;
}

.glow-bg-radial {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Typography elements */
h1,
h2,
h3,
h4,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--secondary);
  font-family: var(--font-heading);
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(
    135deg,
    var(--text-white) 30%,
    var(--primary-bright) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #4338ca 100%);
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  background: rgba(6, 182, 212, 0.05);
  transform: translateY(-2px);
}

/* ==========================================================================
   STRICT CONSISTENT HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}

.logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-main {
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: 1001;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
}

/* Mobile Nav Pane */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-darkest);
  z-index: 999;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav nav ul li a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: var(--transition-smooth);
}

.mobile-nav nav ul li a:hover {
  color: var(--secondary);
}

/* ==========================================================================
   HERO SECTION (CREATIVE AWWWARDS-STYLE)
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  background: radial-gradient(
    circle at 10% 20%,
    rgba(20, 15, 40, 0.4) 0%,
    transparent 80%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-bright);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.hero-badge i {
  animation: pulse 2s infinite alternate;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-white) 40%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* 3D Visual in Hero */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.canvas-3d-wrap {
  width: 450px;
  height: 450px;
  position: relative;
}

.cube-canvas {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 65%
  );
  border-radius: 50%;
  position: relative;
  animation: rotateSphere 20s linear infinite;
}

.cube-core {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px;
  position: absolute;
  top: calc(50% - 70px);
  left: calc(50% - 70px);
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.5);
  transform-style: preserve-3d;
  animation: morphCube 6s ease-in-out infinite alternate;
}

.floating-data-card {
  position: absolute;
  background: rgba(15, 15, 24, 0.85);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.floating-card-1 {
  top: 15%;
  right: 0;
  animation: floatAnimY 4s ease-in-out infinite alternate;
}

.floating-card-2 {
  bottom: 15%;
  left: -10px;
  animation: floatAnimY 4s ease-in-out infinite alternate-reverse;
}

.card-ico-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
}

.card-info h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.card-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LOGO WALL (SOCIAL PROOF)
   ========================================================================== */
.logo-wall {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(4, 4, 6, 0.5);
}

.logo-wall-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.6;
}

.brand-placeholder {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ==========================================================================
   SERVICES SECTION (INTERACTIVE CARDS)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-bright);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--text-white);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE CAMPAIGN REPORT DEMO
   ========================================================================== */
.report-demo {
  background: radial-gradient(
    ellipse at bottom,
    rgba(15, 15, 40, 0.5) 0%,
    transparent 80%
  );
}

.report-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.report-card-mockup {
  background: rgba(10, 10, 18, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 5;
}

.report-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.report-mock-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.report-badge-live {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.report-badge-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: blink-anim 1s infinite;
}

.report-mock-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.metric-mock-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1rem;
}

.metric-mock-box .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.metric-mock-box .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.report-graph-area {
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding-top: 2rem;
  position: relative;
}

.graph-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), var(--secondary));
  border-radius: 4px 4px 0 0;
  transition: var(--transition-smooth);
  position: relative;
}

.graph-bar:hover {
  filter: brightness(1.2);
}

.graph-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE SERVICE / BUDGET CALCULATOR
   ========================================================================== */
.calculator-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-glow);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}

.calc-step {
  margin-bottom: 2rem;
}

.calc-step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.choice-box {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.choice-box input {
  display: none;
}

.choice-box:hover {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.05);
}

.choice-box.active {
  border-color: var(--secondary);
  background: rgba(6, 182, 212, 0.15);
}

.choice-box i {
  font-size: 1.5rem;
  color: var(--primary-bright);
  margin-bottom: 0.5rem;
}

.range-wrap {
  margin-top: 1rem;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #1e293b;
  outline: none;
  margin-bottom: 1rem;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.range-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
}

.calc-results {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.result-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-white);
  margin: 1rem 0;
  text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

/* ==========================================================================
   PORTFOLIO & CASE STUDIES SHOWCASE
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.portfolio-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}

.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2) 0%,
    rgba(6, 182, 212, 0.2) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.portfolio-img-placeholder i {
  font-size: 4rem;
  color: var(--primary-bright);
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(
    to top,
    rgba(4, 4, 6, 0.95) 40%,
    rgba(4, 4, 6, 0.6) 80%,
    transparent 100%
  );
  z-index: 5;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-img-placeholder {
  transform: scale(1.05);
}

.portfolio-card:hover .portfolio-img-placeholder i {
  opacity: 0.6;
}

.portfolio-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   ABOUT US SECTION & CORE PILLARS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.about-feat {
  display: flex;
  gap: 1.5rem;
}

.about-feat-ico {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-feat-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.about-feat-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-visual-creative {
  position: relative;
}

.circular-orbit-wrap {
  width: 400px;
  height: 400px;
  border: 1px dashed var(--border-subtle);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  animation: spin 30s linear infinite;
}

.orbit-node {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-darkest);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  animation: spin 30s linear infinite reverse;
}

.node-1 {
  top: -30px;
  left: calc(50% - 30px);
}
.node-2 {
  bottom: -30px;
  left: calc(50% - 30px);
}
.node-3 {
  left: -30px;
  top: calc(50% - 30px);
}
.node-4 {
  right: -30px;
  top: calc(50% - 30px);
}

/* ==========================================================================
   INDUSTRY FOCUS
   ========================================================================== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.industry-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.industry-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.03);
}

.testimonial-rating {
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

.author-meta h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.author-meta p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION & CUSTOM FORMS
   ========================================================================== */
.contact-section {
  position: relative;
  background: radial-gradient(
    circle at 90% 10%,
    rgba(99, 102, 241, 0.08) 0%,
    transparent 60%
  );
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.contact-info-panel {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 35, 0.95) 0%,
    rgba(10, 10, 18, 0.95) 100%
  );
  padding: 4rem 3rem;
  border-right: 1px solid var(--border-subtle);
}

.panel-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
}

.method-icon {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-details h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.method-details p,
.method-details a {
  font-size: 1.05rem;
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.method-details a:hover {
  color: var(--secondary);
}

.contact-form-wrapper {
  padding: 4rem 3rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 1rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.form-group select option {
  background-color: var(--bg-darkest);
  color: var(--text-white);
}

/* ==========================================================================
   POPUP MODAL FOR SUCCESS SIGNALS
   ========================================================================== */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(10, 10, 18, 0.98);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 3rem;
  z-index: 10001;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-glow);
  display: none;
  text-align: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.popup.active {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.popup-content i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.popup-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.popup-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: none;
}

.popup-overlay.active {
  display: block;
}

/* ==========================================================================
   STRICT CONSISTENT FOOTER
   ========================================================================== */
.footer {
  background: #030305;
  border-top: 1px solid var(--border-subtle);
  padding: 6rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: var(--text-white);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-list li i {
  color: var(--secondary);
  width: 15px;
  margin-top: 0.25rem;
}

.contact-list li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-list li a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   LIVE CHAT SUPPORT WIDGET
   ========================================================================== */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.chat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.chat-icon:hover {
  transform: scale(1.05) rotate(5deg);
}

.chat-icon .fa-times {
  display: none;
}

.chat-widget.active .chat-icon .fa-comments {
  display: none;
}

.chat-widget.active .chat-icon .fa-times {
  display: block;
}

.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.chat-widget.active .chat-box {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.chat-header {
  background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
  padding: 1.5rem;
}

.chat-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.chat-header p {
  font-size: 0.75rem;
  opacity: 0.8;
}

.chat-body {
  padding: 1.5rem;
  max-height: 200px;
  overflow-y: auto;
}

.chat-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.chat-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
}

.chat-footer .btn {
  width: 100%;
  padding: 0.75rem;
}

/* ==========================================================================
   LEGAL GENERAL WRAPPERS & BREADCRUMBS
   ========================================================================== */
.subpage .page-header {
  background: radial-gradient(
    circle at 50% 100%,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 60%
  );
  padding: 12rem 0 6rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.subpage .page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumbs a:hover {
  color: var(--secondary);
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-white);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.5rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.legal-content ul li {
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes rotateSphere {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes morphCube {
  0% {
    border-radius: 20px;
    transform: rotate(0deg) scale(1);
  }
  100% {
    border-radius: 50%;
    transform: rotate(180deg) scale(0.9);
  }
}

@keyframes floatAnimY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes blink-anim {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .about-grid,
  .contact-wrapper,
  .report-grid,
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-main,
  .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .section-padding {
    padding: 5rem 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .service-choices {
    grid-template-columns: 1fr;
  }
}
