/* ProBizPay - Clean Modern Design */

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1565C0;
  --primary-dark: #0962e7;
  --orange: #E65100;
  --orange-dark: #BF360C;
  --construction-orange: #FF6F00;
  --safety-yellow: #F9A825;
  --safety-green: #53de12;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --green: #2E7D32;
  --yellow: #F9A825;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(0, 10, 30, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 10, 30, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4169E1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-list a {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: 0.2s;
}

.nav-list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-list .cta-link {
  background: linear-gradient(135deg, var(--construction-orange) 0%, var(--orange) 100%);
  color: white !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-list .cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
}

.nav-overlay {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 20px;
    height: 60px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(0, 10, 30, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-list.open {
    display: flex;
  }
  .nav-list a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
  .nav-list .cta-link {
    margin-top: 10px;
  }
}

/* ===== HERO ===== */
.hero {
  padding-top: 30px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-bg,
.hero-grid {
  display: none !important;
  position: absolute;
  visibility: hidden;
}

.hero-inner {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  display: block;
  position: relative;
}

.hero-content {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 920px) {
  .hero-content {
    max-width: 100%;
  }
  .hero-inner {
    padding: 10px 10px;
  }
  .hero-cta {
    justify-content: center;
  }
  .trust-badges {
    justify-content: center;
  }
}

.hero h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin: 0 0 5px 0;
}

.hero h2 span {
  color: var(--orange);
  justify-content: left;
}

.hero-emblem {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  margin: 0 0 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-emblem.enlarged {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80vw;
  max-height: 80vh;
  z-index: 100;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.logos-inline {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 0;
}

.logos-inline .muted {
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px 0;
}

.subhead {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  justify-content: center;
  width: 100%;
}

.hero-cta .btn-secondary {
  background: var(--safety-green);
  color: white;
  border: 2px solid var(--safety-green);
}

.hero-cta .btn-secondary:hover {
  background: #1B5E20;
  border-color: #1B5E20;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  background: var(--construction-orange);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}

.btn-ghost {
  background: white;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
}

.trust-badges li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.trust-badges svg {
  color: var(--safety-green);
  width: 18px;
  height: 18px;
}

/* Hero Video */
.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 51%;
  height: 80%;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video .diagonal-clip {
  display: none;
}

@media (max-width: 900px) {
  .hero-video {
    display: none;
  }
}

/* ===== LOGOS SECTION ===== */
.logos {
  padding: 10px 0;
  background: transparent;
  border: none;
}

.logos .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.logos .muted {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin: 0 0 10px 0;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 16px;
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.chip {
  padding: 8px 16px;
  background: var(--primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
}

.trust-badge .stars {
  color: var(--yellow);
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.trust-badge .rating {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.trust-badge .source {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ===== SECTIONS ===== */
.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
 
  margin-bottom: 10px;
}

.section-head .muted {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 20px;
  background: #d8d8d8;
}

.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  transition: 0.2s;
}

.feature:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--construction-orange), var(--construction-orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.feature p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.feature ul {
  list-style: none;
}

.feature ul li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.feature ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

/* ===== SOLUTIONS ===== */
.solutions {
  padding: 80px 20px;
  background: #84cc16;
}

.solutions .section-head h2 {
  color: var(--gray-900);
}

.solutions .section-head .muted {
  color: var(--gray-700);
}

.solutions .cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  transition: 0.2s;
}

.card:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card h3 {
  color: var(--gray-900);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ===== ANALYTICS ===== */
.analytics {
  padding: 80px 20px;
  background: var(--gray-50);
}

.analytics .metrics {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 800px) {
  .analytics .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .analytics .metrics {
    grid-template-columns: 1fr;
  }
}

.metric {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

.kpi {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
}

.metric .label {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ===== COMPARISON ===== */
.comparison {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  position: relative;
}

.comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(21, 101, 192, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.comparison .section-head {
  position: relative;
  z-index: 1;
}

.comparison .section-head h2 {
  color: white;
}

.comparison .section-head .muted {
  color: rgba(255, 255, 255, 0.6);
}

.compare-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  position: relative;
  z-index: 1;
}

.compare-list li {
  padding: 20px 20px 20px 60px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.compare-list li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 111, 0, 0.3);
  transform: translateX(5px);
}

.compare-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--construction-orange), var(--orange));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}

.compare-list strong {
  color: white;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 20px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(230, 81, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.pricing .section-head {
  position: relative;
  z-index: 1;
}

.pricing .section-head h2 {
  color: white;
}

.pricing .section-head .muted {
  color: rgba(255, 255, 255, 0.6);
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.billing-toggle .save {
  background: linear-gradient(135deg, var(--safety-green), var(--green));
  color: white;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

.switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  cursor: pointer;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.switch input:checked + .slider {
  background: linear-gradient(135deg, var(--safety-green), var(--green));
}

.switch input:checked + .slider::before {
  transform: translateX(24px);
}

.price-cards {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .price-cards {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

.price {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.price:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.price h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.price .price-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.price .unit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.price .price-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.price ul {
  list-style: none;
  margin-bottom: 0;
}

.price ul li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price ul li::before {
  content: "✓ ";
  color: var(--safety-green);
}

.price .features-visible {
  margin-bottom: 0;
}

.price .features-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.price .features-hidden.expanded {
  max-height: 500px;
  transition: max-height 0.4s ease-in;
}

.price .features-hidden ul {
  margin-top: 0;
  border-top: none;
}

.price .features-toggle {
  background: none;
  border: none;
  color: var(--safety-green);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.price .features-toggle:hover {
  color: #6be630;
}

.price .features-toggle .toggle-icon {
  font-weight: bold;
  transition: transform 0.2s ease;
}

.price .features-toggle.expanded .toggle-icon {
  transform: rotate(45deg);
}

.price .btn {
  width: 100%;
  justify-content: center;
}

.price .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.price .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.price .btn-primary {
  background: linear-gradient(135deg, #00AAFF 0%, #0066FF 100%);
  border: none;
  color: white;
}

.price .btn-primary:hover {
  background: linear-gradient(135deg, #33BBFF 0%, #0077FF 100%);
  transform: translateY(-2px);
}

.price-reco {
  border: 2px solid var(--safety-green);
  background: rgba(83, 222, 18, 0.1);
  transform: scale(1.05);
}

.price-reco:hover {
  transform: scale(1.08);
}

.price .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--safety-green), var(--green));
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

/* Add-ons Banner */
.addons-banner {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: center;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.addons-banner h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.addons-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 16px;
}

.addons-banner .addons-count {
  display: inline-block;
  background: linear-gradient(135deg, #00AAFF 0%, #0066FF 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  position: relative;
  z-index: 1;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(132, 204, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials .section-head {
  position: relative;
  z-index: 1;
}

.testimonials .section-head h2 {
  color: white;
}

.testimonials .section-head .muted {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials .quotes {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .testimonials .quotes {
    flex-direction: column;
  }
  .testimonials .slider-btn {
    display: none;
  }
}

.testimonials .slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.testimonials .slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.testimonials .slide {
  min-width: 100%;
}

.testimonials blockquote {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin: 0;
}

.testimonials blockquote p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonials blockquote footer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonials .slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.testimonials .slider-btn:hover {
  background: var(--construction-orange);
  border-color: var(--construction-orange);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 20px;
  background: linear-gradient(180deg, #111827 0%, #0a0a0f 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(230, 81, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact .section-head {
  position: relative;
  z-index: 1;
}

.contact .section-head h2 {
  color: white;
}

.contact .section-head .muted {
  color: rgba(255, 255, 255, 0.6);
}

.lead-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .lead-form {
    padding: 24px;
  }
}

label {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: white;
  transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--construction-orange);
  background: rgba(255, 255, 255, 0.1);
}

select {
  cursor: pointer;
}

select option {
  background: #1e293b;
  color: white;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row > div {
  margin-bottom: 0;
}

.lead-form > div {
  margin-bottom: 16px;
}

.form-actions {
  text-align: center;
  margin-top: 28px;
}

.form-actions .btn-primary {
  padding: 16px 40px;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--safety-green) 0%, var(--green) 100%);
}

.form-actions .btn-primary:hover {
  background: linear-gradient(135deg, #5ee616 0%, #3a9c3f 100%);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.4);
}

.tiny {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 60px 20px 40px;
  background: #050508;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
}

.foot-nav-links {
  margin-top: 45px;
}

.foot-solutions strong {
  display: block;
  margin-bottom: 15px;
  color: #fff;
}

.foot-solutions-cols {
  display: flex;
  gap: 30px;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.foot-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.foot-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.foot-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4169E1;
}

.foot-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.foot-nav, .foot-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 600px) {
  .foot-nav, .foot-legal {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.foot-nav a, .foot-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.foot-nav a:hover, .foot-legal a:hover {
  color: var(--construction-orange);
}

.copyright {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ===== UTILITIES ===== */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  background: var(--gray-900);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
}

.to-top:hover {
  background: var(--orange);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

@media (min-width: 800px) {
  .sticky-cta {
    display: none;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.theme-switcher {
  display: none;
}

.muted {
  color: var(--gray-500);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== NEW ROCKSTAR HERO ===== */
.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 20, 50, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Hero with background image for subpages */
.hero-with-bg {
  min-height: 500px !important;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 20, 50, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-with-bg .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content-new {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.badge-icon {
  font-size: 1.1rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #00AAFF 0%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta-new {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--safety-green) 0%, var(--green) 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(46, 125, 50, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(46, 125, 50, 0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: rgba(230, 81, 0, 0.25);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 111, 0, 0.5);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(230, 81, 0, 0.4);
  border-color: var(--construction-orange);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-bounce {
  animation: bounce 2s ease infinite;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-900);
  padding: 20px 0;
  overflow: hidden;
}

.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-industries {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: 500;
}

.industry-scroll {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.industry-track {
  display: flex;
  gap: 12px;
  animation: scrollIndustries 30s linear infinite;
}

@keyframes scrollIndustries {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.industry-chip {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .trust-industries {
    flex-direction: column;
    gap: 12px;
  }
  .trust-label {
    text-align: center;
  }
}

/* ===== NEW FEATURES SECTION ===== */
.features-new {
  padding: 60px 20px;
  background: linear-gradient(180deg, #0a0a0f 0%, #111827 100%);
  position: relative;
}

.features-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(230, 81, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.features-intro {
  max-width: 1200px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-head-new {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #00AAFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  margin-bottom: 20px;
}

.section-tag-dark {
  background: rgba(255, 255, 255, 0.05);
}

.section-title-large {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-chart-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.features-chart-container {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.6) 0%, transparent 40%),
    linear-gradient(180deg,
      #d4d6dc 0%,
      #c4c6cc 10%,
      #b9bcc4 25%,
      #A9ACB6 40%,
      #999ca6 50%,
      #A9ACB6 60%,
      #b9bcc4 75%,
      #c9ccd4 90%,
      #d9dce4 100%
    );
  border: 3px solid;
  border-color: #e8eaef #a0a3ac #808490 #c8cad0;
  border-radius: 50%;
  padding: 30px;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  box-shadow:
    0 0 100px rgba(169, 172, 182, 0.6),
    0 0 60px rgba(169, 172, 182, 0.4),
    inset 0 4px 8px rgba(255, 255, 255, 0.9),
    inset 0 -4px 8px rgba(0, 0, 0, 0.2),
    inset 4px 0 8px rgba(255, 255, 255, 0.4),
    inset -4px 0 8px rgba(0, 0, 0, 0.1),
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.features-chart-container::before {
  content: '';
  position: absolute;
  top: 3%;
  left: 10%;
  right: 10%;
  height: 45%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.9) 20%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  pointer-events: none;
  z-index: 1;
}

.features-chart-container::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 25%;
  right: 25%;
  height: 20%;
  background: linear-gradient(0deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.2) 40%,
    transparent 100%
  );
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  pointer-events: none;
}

@media (max-width: 768px) {
  .features-chart-container {
    max-width: 500px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .features-chart-container {
    max-width: 360px;
    padding: 15px;
  }
}

.features-detail-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

/* ===== NEW SOLUTIONS SECTION ===== */
.solutions-new {
  padding: 60px 20px;
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  position: relative;
}

.solutions-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(132, 204, 22, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.solutions-new .section-head-new {
  position: relative;
  z-index: 1;
}

.solutions-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.solutions-new .card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.3s ease;
}

.solutions-new .card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(132, 204, 22, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.solutions-new .card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.solutions-new .card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ===== NEW ANALYTICS SECTION ===== */
.analytics-new {
  padding: 100px 20px;
  background: var(--gray-900);
}

.analytics-new .section-head h2 {
  color: white;
}

.analytics-new .section-head .muted {
  color: rgba(255, 255, 255, 0.6);
}

.analytics-new .metrics {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.analytics-new .metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.analytics-new .metric:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.analytics-new .kpi {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00AAFF 0%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.analytics-new .metric .label {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 800px) {
  .analytics-new .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .analytics-new .metrics {
    grid-template-columns: 1fr;
  }
  .stat-divider {
    display: none;
  }
  .hero-stats {
    gap: 30px;
  }
}

/* ===== ENHANCED FEATURE CARDS ===== */
.features-new .feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-new .feature {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features-new .feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--construction-orange), var(--safety-yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.features-new .feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 111, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.features-new .feature:hover::before {
  transform: scaleX(1);
}

.features-new .feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--construction-orange) 0%, var(--orange) 100%);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
}

.features-new .feature h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: white;
}

.features-new .feature p {
  color: rgba(255, 255, 255, 0.6);
}

.features-new .feature ul li {
  color: rgba(255, 255, 255, 0.7);
}

.features-new .feature ul li::before {
  color: var(--construction-orange);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--construction-orange), var(--safety-yellow));
  z-index: 1000;
  transition: width 0.1s ease;
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 768px) {
  .hero-new {
    padding-top: 60px;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: row;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}
