@charset "UTF-8";

/* ==========================================================================
   DOMAINNAME - PREMIUM AWWWARDS DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette - Warm & Luminous */
  --bg-base: #fffcfa;
  --bg-surface: #ffffff;
  --bg-alt: #fff4ed;
  --primary: #ff4e00;
  --primary-light: #ff8a00;
  --primary-glow: rgba(255, 78, 0, 0.15);
  --accent: #ffb347;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --border-light: rgba(26, 26, 26, 0.08);
  --white: #ffffff;

  /* Gradients */
  --gradient-warm: linear-gradient(135deg, #ff4e00 0%, #ff8a00 100%);
  --gradient-hover: linear-gradient(135deg, #ff8a00 0%, #ff4e00 100%);
  --gradient-glass: rgba(255, 255, 255, 0.85);

  /* Shadows */
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 20px 40px rgba(255, 78, 0, 0.08);
  --shadow-lg: 0 40px 80px rgba(26, 26, 26, 0.06);

  /* Typography */
  --font-heading: "Teko", sans-serif;
  --font-body: "Poppins", sans-serif;

  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important; /* Managed by custom cursor */
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-base);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
select,
textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--gradient-warm);
  border-radius: 10px;
}

/* ==========================================================================
   CUSTOM CURSOR & PRELOADER
   ========================================================================== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s;
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s,
    border-color 0.3s;
  transition-timing-function: var(--ease-out-expo);
}

.cursor-hover .cursor-dot {
  background: transparent;
}
.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  background: var(--primary-glow);
  border-color: transparent;
  mix-blend-mode: multiply;
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-surface);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition:
    opacity 1s var(--ease-out-expo),
    visibility 1s;
}

.preloader-logo img {
  width: 140px;
  animation: pulse 2s infinite ease-in-out;
}
.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--border-light);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.preloader-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-warm);
  animation: slideRight 1.5s infinite var(--ease-out-expo);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
@keyframes slideRight {
  100% {
    left: 100%;
  }
}

/* ==========================================================================
   HEADER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 1000;
  transition: var(--transition-slow);
}

.header.scrolled {
  padding: 15px 0;
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 45px;
  transition: var(--transition-fast);
}
.header.scrolled .logo {
  height: 38px;
}

.nav-list {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-warm);
  transition: var(--transition-fast);
}
.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background: var(--gradient-warm);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 35px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hover);
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 1;
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 2;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px var(--primary-glow);
}
.btn-primary:hover::before {
  opacity: 1;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  z-index: 1001;
}
.mobile-toggle span {
  width: 30px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 60vw;
  height: 60vw;
  background: var(--gradient-warm);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: morphShape 15s infinite alternate var(--ease-out-expo);
  z-index: 0;
}

@keyframes morphShape {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    transform: translateY(-50%) rotate(45deg);
  }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 650px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 30px;
}
.hero h1 span {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-visual {
  position: relative;
}
.dashboard-mockup {
  background: var(--bg-surface);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: var(--transition-slow);
}
.dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mockup-header {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
}
.mockup-dot:nth-child(1) {
  background: #ff5f56;
}
.mockup-dot:nth-child(2) {
  background: #ffbd2e;
}
.mockup-dot:nth-child(3) {
  background: #27c93f;
}

.mockup-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.m-stat {
  flex: 1;
  background: var(--bg-alt);
  padding: 20px;
  border-radius: 12px;
}
.m-stat span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.m-stat strong {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
}

.m-chart {
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.m-bar {
  flex: 1;
  background: var(--gradient-warm);
  border-radius: 4px 4px 0 0;
  animation: barGrow 2s var(--ease-out-expo) forwards;
}
@keyframes barGrow {
  0% {
    height: 0 !important;
  }
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item p {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   SERVICES / ARSENAL
   ========================================================================== */
.section {
  padding: 140px 0;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}
.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1.1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 50px 40px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}

.s-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-alt);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 30px;
  transition: var(--transition-fast);
}
.service-card:hover .s-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.service-card p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}
.service-link {
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}
.service-link i {
  color: var(--primary);
  transition: transform 0.3s;
}
.service-card:hover .service-link {
  color: var(--primary);
}
.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   ROI CALCULATOR (INTERACTIVE)
   ========================================================================== */
.calc-section {
  background: var(--bg-alt);
}
.calc-wrapper {
  background: var(--bg-surface);
  border-radius: 30px;
  padding: 60px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.calc-controls label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.slider-container {
  margin-bottom: 40px;
}
.val-display {
  color: var(--primary);
  font-size: 1.5rem;
  float: right;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  background: var(--border-light);
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 5px 15px var(--primary-glow);
  transition: transform 0.1s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-result {
  background: var(--gradient-warm);
  border-radius: 20px;
  padding: 50px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.calc-result span {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.9;
}
.calc-result h3 {
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 30px;
}

/* ==========================================================================
   LIVE REPORTS & DATA
   ========================================================================== */
.reports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.report-text h2 {
  font-family: var(--font-heading);
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.report-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.report-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.chart-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 250px;
  gap: 15px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 10px;
}
.chart-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 10px;
}
.c-bar {
  width: 100%;
  background: var(--bg-alt);
  border-radius: 6px 6px 0 0;
  position: relative;
  overflow: hidden;
}
.c-fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--gradient-warm);
  height: 0;
  transition: height 1.5s var(--ease-out-expo);
}
.c-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   INDUSTRIES TABS
   ========================================================================== */
.industry-section {
  background: var(--bg-surface);
}
.tabs-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.tab-headers {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 15px 40px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-out forwards;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--bg-alt);
  border-radius: 30px;
  padding: 60px;
}
.ind-info h3 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ind-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.ind-list i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.test-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.test-card i {
  font-size: 4rem;
  color: var(--primary-glow);
  margin-bottom: 30px;
}
.test-text {
  font-size: 1.5rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 40px;
}
.test-author h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--primary);
}
.test-author p {
  color: var(--text-muted);
}

/* ==========================================================================
   LIVE CHAT SIMULATOR
   ========================================================================== */
.chat-section {
  background: var(--text-dark);
  color: var(--white);
  padding: 120px 0;
}
.chat-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.chat-info h2 {
  font-family: var(--font-heading);
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--white);
}
.chat-info p {
  font-size: 1.1rem;
  color: #aaaaaa;
  margin-bottom: 40px;
}

.chat-app {
  background: var(--bg-surface);
  border-radius: 20px;
  overflow: hidden;
  color: var(--text-dark);
}
.chat-header {
  background: var(--bg-alt);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--border-light);
}
.chat-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.chat-status h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: -5px;
}
.chat-status span {
  font-size: 0.8rem;
  color: #27c93f;
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-status span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #27c93f;
  border-radius: 50%;
}

.chat-body {
  height: 300px;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--white);
}
.msg {
  max-width: 80%;
  padding: 12px 18px;
  border-radius: 15px;
  font-size: 0.95rem;
}
.msg.bot {
  background: var(--bg-alt);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}
.msg.user {
  background: var(--gradient-warm);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.chat-input {
  display: flex;
  padding: 15px;
  border-top: 1px solid var(--border-light);
  background: var(--white);
}
.chat-input input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 1rem;
}
.chat-input button {
  background: var(--primary);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
}
.chat-input button:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

/* ==========================================================================
   FOOTER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.footer {
  background: var(--bg-surface);
  padding: 100px 0 30px;
  border-top: 1px solid var(--border-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-logo {
  height: 50px;
  margin-bottom: 25px;
}
.footer-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.s-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-fast);
}
.s-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.f-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--text-dark);
}
.f-links li {
  margin-bottom: 12px;
}
.f-links a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.f-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.f-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-muted);
}
.f-contact i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   SUBPAGE & LEGAL STYLING (Contact, Privacy, Terms, Disclaimer)
   ========================================================================== */
.subpage-hero {
  padding: 180px 0 80px;
  background: var(--bg-alt);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.subpage-hero h1 {
  font-family: var(--font-heading);
  font-size: 5rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumb a {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-content {
  padding: 100px 0;
  max-width: 900px;
  margin: 0 auto;
}
.legal-box {
  background: var(--bg-surface);
  padding: 60px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.legal-box p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.8;
}
.legal-box h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 40px 0 20px;
  color: var(--text-dark);
}
.legal-box ul {
  margin-left: 20px;
  margin-bottom: 25px;
}
.legal-box li {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  list-style-type: disc;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 100px 0;
}
.contact-info-card {
  background: var(--bg-alt);
  padding: 50px;
  border-radius: 30px;
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.c-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.c-item i {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.c-item div span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.c-item div strong {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.contact-form {
  background: var(--bg-surface);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: var(--bg-base);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}
textarea.form-control {
  height: 150px;
  resize: none;
}
.btn-submit {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEALS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s var(--ease-out-expo);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: clamp(3.5rem, 6vw, 5rem);
  }
  .services-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .nav-list,
  .header .btn-primary {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .dashboard-mockup {
    max-width: 600px;
    margin: 0 auto;
  }
  .calc-wrapper,
  .reports-grid,
  .ind-grid,
  .chat-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .services-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 3rem;
  }
  .hero-bg-shape {
    width: 100vw;
    height: 100vw;
  }
  .tab-btn {
    padding: 10px 20px;
    font-size: 1.2rem;
  }
  .legal-box {
    padding: 30px;
  }
}
