:root {
  --teal: #0ea5a4;
  --coral: #ff6b5f;
  --dark: #0f1724;
  font-family: Inter, system-ui, sans-serif;
}

body {
  margin: 0;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: url("images/woman-phone.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.4em;
  margin-bottom: 0.4em;
}

.lead {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  border: none;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

section {
  margin: 50px 0;
}

.industry-visual {
  text-align: center;
  margin-top: 20px;
}

.industry-visual img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  background: #f8fafb;
  color: #666;
  padding: 20px;
}
/* ===== NEW STYLES FOR EXPANDED SERVICES ===== */

/* New Services Grid Styles */
.services-grid {
  text-align: center;
  margin-bottom: 4rem;
}

.section-intro {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 4px solid #007acc;
}

.service-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card ul {
  text-align: left;
  margin-top: 1rem;
}

.service-card li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Steps Styles */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #007acc;
  color: white;
  border-radius: 50%;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Industries Styles */
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.industry-tag {
  background: #f8f9fa;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  border: 2px solid #e9ecef;
  font-weight: 600;
  color: #495057;
}
/* Final CTA */
.final-cta {
  text-align: center;
  background: #f8f9fa;
  padding: 3rem 2rem;
  border-radius: 10px;
  margin-top: 3rem;
}
/* Fix hero section outline button - white text on dark background */
.hero .btn-outline {
  color: white !important;
  border-color: white;
}

.hero .btn-outline:hover {
  background: white;
  color: #007acc !important;
}

/* Fix final CTA outline button - dark text on light background */
.final-cta .btn-outline {
  color: #007acc !important;
  border-color: #007acc;
}

.final-cta .btn-outline:hover {
  background: #007acc;
  color: white !important;
}
/* Future Services Section */
.future-services {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: center;
}

.future-services ul {
  text-align: left;
  display: inline-block;
  margin: 1rem 0;
}

.future-services li {
  margin-bottom: 0.8rem;
  color: #555;
}

.future-services em {
  color: #007acc;
  font-style: italic;
}