:root {
  --dark-bg: #0b1120;
  --accent-orange: #ff6a2a;
  --text-muted: #94a3b8;
}

/* Hero Section */
.hero-stats {
  background-color: var(--dark-bg);
  padding: 100px 0;
  color: white;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  background: rgba(255, 106, 42, 0.2);
  color: var(--accent-orange);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 24px 0;
  font-weight: 800;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 500px;
  margin-bottom: 60px;
}

/* Stats */
.stats-row {
  display: flex;
  gap: 40px;
  border-top: 1px solid #1e293b;
  padding-top: 30px;
}

.stat-item h3 {
  font-size: 2rem;
  margin: 0;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Tilted Image Effect */
.hero-visual {
  perspective: 1000px;
}

.tilted-card {
  transform: rotateY(-15deg) rotateX(10deg);
  box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid #334155;
}

.tilted-card img {
  width: 100%;
  display: block;
}

.card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.8);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Case Study Section */
.case-study {
  background: #ffffff;
  padding: 100px 0;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.label {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.8rem;
}

.case-title {
  font-size: 2.5rem;
  margin-top: 15px;
  color: #0f172a;
}

.case-intro {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.case-content-row {
  display: flex;
  gap: 40px;
}

.testimonial-card {
  background: var(--dark-bg);
  padding: 30px;
  border-radius: 12px;
  color: white;
  border-left: 4px solid var(--accent-orange);
  flex: 1;
}

.testimonial-card cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.challenge-list {
  flex: 1;
  list-style: none;
  padding: 0;
}

.challenge-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #475569;
  font-size: 0.95rem;
}

.challenge-list li::before {
  content: '▲';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-size: 0.7rem;
  top: 4px;
}

:root {
  --bg-dark: #0b1120;
  --card-bg: #1a2333;
  --accent-orange: #ff6a2a;
  --accent-blue: #3b82f6;
  --text-gray: #94a3b8;
}

.solution-section {
  background-color: var(--bg-dark);
  padding: 100px 0;
  color: white;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solution-header {
  text-align: center;
  margin-bottom: 60px;
}

.label {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.section-title {
  font-size: 2.5rem;
  margin-top: 15px;
  font-weight: 800;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin: 20px 0 15px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Icons (Placeholder using Borders) */
.feature-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--accent-orange);
  position: relative;
  border-radius: 4px;
}

/* Bottom Visual Block */
.visual-block {
  background-color: var(--card-bg);
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  min-height: 400px;
}

.visual-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-title {
  font-size: 2rem;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.visual-content p {
  color: var(--text-gray);
  max-width: 400px;
  margin-bottom: 40px;
}

.visual-image {
  flex: 1;
  background: linear-gradient(to right, var(--card-bg), transparent 30%);
  position: relative;
}

.visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Legend */
.visual-legend {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.line {
  width: 40px;
  height: 3px;
  border-radius: 2px;
}

.line.blue {
  background-color: var(--accent-blue);
}

.line.orange {
  background-color: var(--accent-orange);
}

.legend-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .visual-block {
    flex-direction: column;
  }

  .case-study {
    padding: 45px 0;
  }

  .case-grid {
    display: block;
  }

  .case-content-row {
    display: block;
  }

  .challenge-list {
    padding: 24px;
  }
}


:root {
  --bg-color: #f8fafc;
  --blue-card: #c5d8fb;
  --orange-accent: #f06a1d;
  --dark-navy: #0f172a;
  --text-main: #1e293b;
}

.impact-section {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.impact-eyebrow {
  color: var(--orange-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.impact-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 40px;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Left Card Styling */
.card-efficiency {
  background-color: var(--blue-card);
  padding: 0;
}

.card-efficiency .card-content {
  padding: 40px;
}

.card-image {
  margin-top: auto;
  height: 250px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.2);
}

/* Right Column Styling */
.impact-right-col {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.card-cost {
  background: white;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cost-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trend-icon {
  width: 30px;
  height: 30px;
}

/* Bottom Row Styling */
.impact-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card-uptime {
  background-color: var(--orange-accent);
  color: white;
  text-align: center;
  padding: 40px 20px;
  justify-content: center;
}

.card-security {
  background-color: var(--dark-navy);
  color: white;
  text-align: center;
  padding: 40px 20px;
  justify-content: center;
}

/* Typography Helpers */
.label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
  /* color: var(--text-main); */
}

.label-orange {
  color: var(--orange-accent);
}

.hero-num {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}

.desc {
  font-size: 18px;
  line-height: 1.5;
  color: #475569;
}

.hero-num-small {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.label-small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* cta */

:root {
  --bg-dark: #0a111f;
  /* Deep navy background */
  --card-bg: #1a273d;
  /* Slightly lighter navy for the form card */
  --input-bg: #233149;
  /* Input background color */
  --label-color: #64748b;
  /* Muted gray for labels */
  --orange-primary: #f06a1d;
  /* Signature orange */
  --white: #ffffff;
}

.cta-section {
  background-color: var(--bg-dark);
  font-family: 'Inter', sans-serif;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  color: var(--white);
}

.cta-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.cta-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-header p {
  color: #94a3b8;
  font-size: 16px;
  margin-bottom: 48px;
}

.cta-form {
  background-color: var(--card-bg);
  padding: 48px;
  border-radius: 16px;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--label-color);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.form-group input,
.form-group select {
  background-color: var(--input-bg);
  border: 1px solid transparent;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder {
  color: #475569;
}

.full-width {
  margin-bottom: 40px;
}

/* Custom dropdown arrow */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  appearance: none;
  /* Removes default OS arrow */
}

.select-wrapper::after {
  content: '▼';
  font-size: 10px;
  color: #64748b;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.submit-btn {
  width: 100%;
  background-color: var(--orange-primary);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s;
}

.submit-btn:hover {
  filter: brightness(1.1);
}

/* Responsive adjust for mobile */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .cta-form {
    padding: 24px;
  }
}

.responsive-footer .footer-menu
{
  gap: 12px 1px !important;
}
 