:root {
  --styra-blue: #003087;
  --styra-orange: #ff6b00;
  --styra-success: #00d4aa;
  --styra-neutral: #f8f9fa;
  --styra-text-light: #ffffff;
}

/* Hero Section Container */
.styra-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh; /* Full viewport height impact */
  background-image: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2070&auto=format&fit=crop"); /* Industrial Tech Placeholder */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--styra-text-light);
  padding-top: 80px; /* Offset for fixed nav if needed */
}

.styra-hero-title {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;

  /* ADD THIS LINE TO FIX THE COLOR */
  color: #ffffff !important;
}

/* Thermal AI Overlay Effect */

/* Content Wrapper */
.styra-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

/* Typography */
.styra-hero-title {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.styra-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient: Deep Blue to slightly transparent to reveal image */
  background: linear-gradient(
    135deg,
    rgba(0, 48, 135, 0.95) 0%,
    rgba(0, 48, 135, 0.75) 50%,
    rgba(255, 107, 0, 0.2) 100%
  );
  z-index: 1;
}

.styra-hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}

/* CTA Buttons Wrapper */
.styra-cta-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

/* Buttons */
.styra-btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.styra-btn-primary {
  background-color: var(--styra-orange);
  color: white;
  border: 2px solid var(--styra-orange);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.styra-btn-primary:hover {
  background-color: #e55a00;
  border-color: #e55a00;
  transform: translateY(-2px);
}

.styra-btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.styra-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .styra-hero-title {
    font-size: 2.5rem;
  }
  .styra-hero-subtitle {
    font-size: 1.1rem;
  }

  /* FIX FOR BUTTONS: Center them properly */
  .styra-cta-wrapper {
    flex-direction: column;
    align-items: center; /* Forces buttons to center */
    gap: 15px; /* Adds space between the stacked buttons */
  }

  .styra-btn {
    width: 100%; /* Allows button to grow */
    max-width: 300px; /* But stops it from getting too wide */
    text-align: center;
  }
}

/* --- SECTION 1: STYRA ADVANTAGE --- */
.styra-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.styra-container {
  max-width: 1200px;
  margin: 0 auto;
}

.styra-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column Styling */
.styra-visual-wrap {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.styra-visual-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.styra-h2 {
  font-family: "Inter", sans-serif;
  color: #003087; /* Primary Blue */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.styra-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styra-list li {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.styra-check-icon {
  color: #00d4aa; /* Success Green */
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Right Column: Stats Grid */
.styra-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.styra-stat-card {
  background: #f8f9fa; /* Neutral Gray */
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0, 48, 135, 0.1);
  transition: transform 0.3s ease;
}

.styra-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  border-color: #ff6b00; /* Hover Orange */
}

.styra-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b00; /* Styra Orange */
  margin-bottom: 5px;
  line-height: 1;
}

.styra-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #003087; /* Styra Blue */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .styra-grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .styra-h2 {
    font-size: 2rem;
  }
}

@media (max-width: 479px) {
  .styra-stats-grid {
    grid-template-columns: 1fr; /* Stack cards on very small screens */
  }
}

/* --- SECTION 2: INDUSTRY GRID/CAROUSEL --- */
.styra-bg-neutral {
  background-color: #f8f9fa;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.styra-center-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.styra-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 20px;
}

.styra-industry-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border-top: 4px solid #003087; /* Styra Blue */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Equal height cards */
}

.styra-industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top-color: #ff6b00; /* Orange on hover */
}

.styra-industry-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.styra-industry-title {
  font-family: "Inter", sans-serif;
  color: #003087;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.styra-industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styra-industry-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.5;
}

.styra-industry-list li::before {
  content: "•";
  color: #ff6b00; /* Orange Bullet */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* RESPONSIVE: Tablet (2 columns) */
@media (max-width: 991px) {
  .styra-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVE: Mobile (Carousel Swipe) */
@media (max-width: 767px) {
  .styra-industry-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 30px; /* Space for scrollbar */
    -webkit-overflow-scrolling: touch;
  }

  .styra-industry-card {
    min-width: 280px; /* Card width on mobile */
    scroll-snap-align: center;
  }

  /* Hide scrollbar for cleaner look, but allow scrolling */
  .styra-industry-grid::-webkit-scrollbar {
    height: 6px;
  }
  .styra-industry-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
}

/* --- SECTION 3: HOW IT WORKS (PROCESS) --- */
.styra-process-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

/* Process Steps Container */
.styra-process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Connecting Line (Desktop) - Connects the circles */
.styra-process-steps::before {
  content: "";
  position: absolute;
  top: 50px; /* Aligns with center of circles */
  left: 15%;
  right: 15%;
  height: 3px;
  background: #e5e5e5;
  z-index: 0;
}

.styra-step-card {
  flex: 1;
  position: relative;
  z-index: 1;
  background: transparent; /* Transparent to show background if needed */
  padding: 0 10px;
}

.styra-step-icon-circle {
  width: 100px;
  height: 100px;
  background: #003087; /* Styra Blue */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 25px auto;
  border: 8px solid #ffffff; /* Thick white border to break the connecting line */
  box-shadow: 0 5px 15px rgba(0, 48, 135, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.styra-step-card:hover .styra-step-icon-circle {
  transform: scale(1.1);
  background: #ff6b00; /* Orange on hover */
}

/* Number (01, 02, 03) styling */
.styra-step-number {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: rgba(0, 48, 135, 0.05); /* Very faint watermark style */
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  line-height: 1;
}

.styra-step-title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #003087;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.styra-step-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  max-width: 250px;
  margin: 0 auto;
}

/* Central Visual Area */
.styra-process-visual {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 50px 30px;
  max-width: 800px;
  margin: 0 auto;
  border: 1px dashed #d0d0d0;
}

.styra-tagline {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #003087;
  margin-bottom: 10px;
}

.styra-sub-tagline {
  font-size: 1.1rem;
  color: #ff6b00;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Icons for the flow diagram */
.styra-flow-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.8;
  margin-bottom: 10px;
}

.styra-flow-arrow {
  font-size: 2rem;
  color: #ccc;
  padding: 0 15px;
}

/* Responsive */
@media (max-width: 767px) {
  .styra-process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .styra-process-steps::before {
    display: none; /* Hide horizontal line on mobile */
  }

  .styra-step-icon-circle {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .styra-step-number {
    font-size: 3rem;
    top: -10px;
  }

  .styra-flow-arrow {
    transform: rotate(90deg); /* Point arrows down on mobile if stacked */
    display: none; /* Or hide arrows on mobile for cleaner look */
  }
}

/* =========================================
   SECTION 3 MOBILE CENTERING FIX
========================================= */
@media (max-width: 767px) {
  /* 1. Center the 3 Process Steps */
  .styra-process-steps {
    display: flex;
    flex-direction: column;
    align-items: center !important; /* Forces cards to center */
  }

  /* 2. Center content inside each card */
  .styra-step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the icon relative to the text */
    width: 100%;
  }

  /* 3. Center the paragraph description text */
  .styra-step-desc {
    margin-left: auto;
    margin-right: auto;
  }

  /* 4. Center the Bottom Visual Area */
  .styra-process-visual {
    text-align: center;
    padding: 30px 15px; /* Add some breathing room */
  }

  /* 5. Ensure the Flow Diagram (Icons) wraps and centers nicely */
  .styra-process-visual > div {
    justify-content: center !important;
    gap: 20px;
  }
}

/* --- SECTION 4: AI FEATURES GRID --- */
.styra-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.styra-feature-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Slight lift and orange border accent */
.styra-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 48, 135, 0.08);
  border-color: #ff6b00;
}

.styra-feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.styra-feature-icon {
  font-size: 2rem;
  color: #003087; /* Styra Blue */
}

.styra-feature-title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #003087;
  margin: 0;
  text-transform: uppercase;
}

.styra-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styra-feature-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

/* Bullet styling */
.styra-feature-list li::before {
  content: "›";
  color: #ff6b00; /* Styra Orange */
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 767px) {
  .styra-feature-grid {
    grid-template-columns: 1fr; /* Stack 1 column on mobile */
    gap: 20px;
  }

  .styra-feature-card {
    padding: 25px;
  }
}

/* =========================================
   MOBILE HAMBURGER MENU SIZING FIX
========================================= */
@media (max-width: 991px) {
  /* 1. Target the Lottie animation container */
  .humber-button {
    width: 35px !important; /* Adjust this value if you want it bigger/smaller */
    height: 35px !important; /* Keep width and height the same for a square ratio */

    /* Ensure the SVG inside centers correctly */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* 2. (Optional) Adjust the padding around the clickable area */
  .menu-button.w-nav-button {
    padding: 5px !important; /* Reduces excess space around the icon */
    margin-top: 5px; /* Slight adjustment for vertical alignment if needed */
  }
}

/* --- SECTION 4: AI FEATURES GRID --- */
.styra-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.styra-feature-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Slight lift and orange border accent */
.styra-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 48, 135, 0.08);
  border-color: #ff6b00;
}

.styra-feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.styra-feature-icon {
  font-size: 2rem;
  color: #003087; /* Styra Blue */
}

.styra-feature-title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #003087;
  margin: 0;
  text-transform: uppercase;
}

.styra-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styra-feature-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

/* Bullet styling */
.styra-feature-list li::before {
  content: "›";
  color: #ff6b00; /* Styra Orange */
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 767px) {
  .styra-feature-grid {
    grid-template-columns: 1fr; /* Stack 1 column on mobile */
    gap: 20px;
  }

  .styra-feature-card {
    padding: 25px;
  }
}

/* --- SECTION 5: ENTERPRISE INTEGRATION --- */
.styra-integration-section {
  padding: 80px 20px;
  background-color: #ffffff; /* White background */
}

.styra-integration-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Column: Tech Grid Visual */
.styra-ecosystem-visual {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 Grid */
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.styra-tech-card {
  background: #f8f9fa;
  border: 2px solid #eaeaea;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.styra-tech-card:hover {
  border-color: #003087;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 48, 135, 0.1);
  transform: translateY(-5px);
}

.styra-tech-icon {
  font-size: 2rem;
  margin-bottom: 5px;
  display: block;
}

.styra-tech-name {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #444;
  letter-spacing: 0.5px;
}

.styra-tech-card:hover .styra-tech-name {
  color: #003087; /* Blue on hover */
}

/* Right Column: Text Content */
.styra-integration-content {
  flex: 1;
}

.styra-integration-title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #003087;
  margin-bottom: 30px;
  line-height: 1.2;
}

.styra-integration-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styra-integration-list li {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start; /* Aligns icon to top of text */
  gap: 15px;
  padding: 15px;
  background: #fcfcfc;
  border-radius: 8px;
  border-left: 4px solid #00d4aa; /* Success Green Stripe */
  transition: background 0.3s;
}

.styra-integration-list li:hover {
  background: #f0fdf9;
}

/* Custom Check Icon */
.styra-check-circle {
  min-width: 24px;
  height: 24px;
  background: #00d4aa;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-top: 3px;
}

/* Responsive */
@media (max-width: 991px) {
  .styra-integration-flex {
    flex-direction: column-reverse; /* Stack vertically */
    text-align: center;
    gap: 40px;
  }

  .styra-integration-list li {
    text-align: left; /* Keep list aligned left */
  }

  .styra-integration-title {
    font-size: 2rem;
  }
}

/* --- SECTION 6: BUSINESS IMPACT TABLE --- */
.styra-impact-section {
  padding: 80px 20px;
  background-color: #f8f9fa; /* Neutral Background */
}

/* Table Container */
.styra-table-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden; /* For rounded corners */
  border: 1px solid #e5e5e5;
}

/* Table Header */
.styra-impact-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
}

.styra-impact-table thead th {
  background: #003087; /* Styra Blue */
  color: #ffffff;
  padding: 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Center align the comparison columns */
.styra-impact-table thead th:nth-child(2),
.styra-impact-table thead th:nth-child(3) {
  text-align: center;
}

/* Highlight the STYRA AI column header */
.styra-impact-table thead th:nth-child(3) {
  background: #ff6b00; /* Orange Header for Styra */
}

/* Table Body Rows */
.styra-impact-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.styra-impact-table tbody tr:last-child {
  border-bottom: none;
}

.styra-impact-table tbody tr:hover {
  background: #fafafa;
}

/* Table Cells */
.styra-impact-table td {
  padding: 18px 20px;
  font-size: 1.05rem;
  color: #333;
}

/* First Column (Metric Name) */
.styra-impact-table td:first-child {
  font-weight: 600;
  color: #003087;
}

/* Second Column (Traditional) - Center Align */
.styra-impact-table td:nth-child(2) {
  text-align: center;
  color: #777;
  background-color: #fcfcfc; /* Slight gray background */
}

/* Third Column (STYRA AI) - Center Align & Bold */
.styra-impact-table td:nth-child(3) {
  text-align: center;
  font-weight: 700;
  color: #003087;
  background-color: #fffbf5; /* Very subtle orange tint */
}

/* Positive Delta Indicator (Green text for improvements) */
.styra-positive {
  color: #00d4aa;
}

/* Market Stat Callout */
.styra-market-stat {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px dashed #003087;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.styra-stat-large {
  font-size: 2.5rem;
  font-weight: 900;
  color: #003087;
  display: block;
  margin-bottom: 20px; /* Increased from 5px to 20px for better separation */
}

.styra-stat-text {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

/* Responsive Table */
@media (max-width: 767px) {
  .styra-impact-table thead th {
    font-size: 0.9rem;
    padding: 15px 10px;
  }

  .styra-impact-table td {
    font-size: 0.9rem;
    padding: 15px 10px;
  }

  .styra-stat-large {
    font-size: 2rem;
  }
}

/* --- SECTION 7: PRICING / DEPLOYMENT --- */
.styra-pricing-section {
  padding: 100px 20px;
  background-color: #ffffff;
}

.styra-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch; /* Make cards equal height */
}

/* Base Card Styling */
.styra-price-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.styra-price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Individual Tier Specifics */
.styra-price-card.individual {
  border-top: 6px solid #777; /* Neutral Top Border */
}

/* Enterprise Tier Specifics */
.styra-price-card.enterprise {
  border: 2px solid #003087; /* Full Blue Border */
  background: #fbfdff;
}

/* "Most Popular" Badge */
.styra-badge-popular {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #ff6b00;
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(45deg);
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Typography */
.styra-tier-name {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #003087;
  margin-bottom: 10px;
}

.styra-price-point {
  font-size: 2rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 30px;
  display: block;
}

.styra-price-sub {
  font-size: 0.9rem;
  color: #777;
  font-weight: 400;
}

/* Feature List */
.styra-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1; /* Pushes button to bottom */
  text-align: left;
}

.styra-price-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  font-size: 1rem;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.styra-price-features li:last-child {
  border-bottom: none;
}

.styra-price-features li::before {
  content: "✓";
  color: #00d4aa; /* Green Check */
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Buttons */
.styra-btn-full {
  width: 100%;
  display: block;
  text-align: center;
}

/* Responsive */
@media (max-width: 767px) {
  .styra-pricing-grid {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
    max-width: 400px;
  }
}

/* --- SECTION 8: TESTIMONIALS --- */
.styra-testimonial-section {
  padding: 80px 20px;
  background-color: #f8f9fa; /* Neutral Background */
  overflow: hidden;
}

.styra-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-bottom: 20px; /* Space for shadow/scroll */
}

.styra-quote-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.styra-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #003087;
}

/* Big Quote Icon */
.styra-quote-icon-large {
  font-family: serif; /* Classic quote look */
  font-size: 4rem;
  color: #ff6b00; /* Orange */
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 20px;
}

.styra-quote-text {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin-top: 30px; /* Space for icon */
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
}

.styra-quote-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.styra-author-avatar {
  width: 50px;
  height: 50px;
  background-color: #003087;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.styra-author-details h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #003087;
}

.styra-author-details p {
  margin: 0;
  font-size: 0.85rem;
  color: #777;
}

/* RESPONSIVE CAROUSEL BEHAVIOR (Mobile Swipe) */
@media (max-width: 991px) {
  .styra-testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    padding-right: 20px; /* Peek effect */
  }

  .styra-quote-card {
    min-width: 300px; /* Force card width */
    scroll-snap-align: center;
  }

  /* Hide Scrollbar */
  .styra-testimonial-grid::-webkit-scrollbar {
    height: 6px;
  }
  .styra-testimonial-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
}

/* --- SECTION 9: FINAL CTA FOOTER --- */
.styra-cta-section {
  padding: 80px 20px;
  background: #003087; /* Styra Blue Background */
  color: #ffffff;
  text-align: center;
}

.styra-cta-title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Checklist Styling */
.styra-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  display: inline-block;
  text-align: left;
}

.styra-cta-list li {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.styra-cta-list li::before {
  content: "✅"; /* Using the emoji as requested, or can use icon */
  font-size: 1.2rem;
}

/* Button Wrapper */
.styra-final-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* White Button Variant for Dark Background */
.styra-btn-white {
  background-color: #ffffff;
  color: #003087;
  border: 2px solid #ffffff;
  font-weight: 700;
}

.styra-btn-white:hover {
  background-color: #f0f0f0;
  color: #003087;
  transform: translateY(-2px);
}

/* Contact Links */
.styra-contact-row {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 1.1rem;
}

.styra-contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.styra-contact-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
  .styra-cta-title {
    font-size: 1.75rem !important; /* Smaller size for mobile */
    line-height: 1.4 !important; /* More breathing room between lines */
    padding: 0 10px; /* Prevents text from hitting the screen edges */
    margin-bottom: 25px; /* Adjust spacing below heading */
  }

  .styra-final-btns {
    flex-direction: column;
    align-items: center;
  }
  .styra-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .styra-contact-row {
    flex-direction: column;
    gap: 10px;
  }
}
