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

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #1e3a8a;
  --secondary-color: #14b8a6;
  --accent-color: #0d9488;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #cbd5e1;
  --background-light: #f8fafc;
  --background-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== GLOBAL ===== */
body {
  font-family: 'Poppins', 'Inter', Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}
h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }

p { margin: 0 0 1rem 0; color: var(--text-secondary); }
a { color: var(--secondary-color); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-color); }
button { font-family: 'Poppins', sans-serif; font-weight: 500; }

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
@keyframes flow {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* ===== HEADER ===== */
.header-toolbar {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: white;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 70px;
  gap: 2rem;
  flex-wrap: nowrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}

.logo-container .logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.company-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-grow: 1;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.desktop-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: white;
}

.desktop-nav a.active {
  background-color: rgba(20, 184, 166, 0.2);
  color: #14b8a6;
}

.cta-button {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: white !important;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
  font-size: 0.9rem;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: white;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  padding: 0.5rem;
  line-height: 1;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-weight: 500;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
  color: white;
}

.mobile-nav a.active {
  background-color: rgba(20, 184, 166, 0.2);
  color: #14b8a6;
}

.mobile-cta-button {
  margin-top: 1rem;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: white !important;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

/* ===== HOME HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.gradient-text {
  background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: white !important;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
  color: white;
}

.cta-secondary {
  color: white !important;
  border: 2px solid white;
  background: transparent;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: white;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-brain {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-icon {
  font-size: 8rem;
  animation: pulse 2s infinite;
  filter: drop-shadow(0 0 20px rgba(20, 184, 166, 0.5));
}

.circuit-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #14b8a6, transparent);
  height: 2px;
  animation: flow 3s infinite;
}

.line-1 { top: 20%; left: -50%; width: 200%; animation-delay: 0s; }
.line-2 { top: 50%; left: -50%; width: 200%; animation-delay: 1s; }
.line-3 { top: 80%; left: -50%; width: 200%; animation-delay: 2s; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-hero-section .hero-content {
  display: block;
  text-align: center;
}

.page-hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.page-hero-section .hero-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefit-card p { color: #64748b; line-height: 1.6; margin: 0; }

/* ===== INDUSTRIES SECTION (Home) ===== */
.industries-section {
  padding: 6rem 0;
  background: white;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.industry-card:hover {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: white;
  transform: translateY(-5px);
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.industry-card:hover .industry-icon {
  background: rgba(255, 255, 255, 0.2);
}

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.industry-card:hover h3 { color: white; }
.industry-card p { color: #64748b; line-height: 1.5; margin: 0; }
.industry-card:hover p { color: rgba(255, 255, 255, 0.9); }

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #14b8a6;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.25rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-content { text-align: center; }

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content-btn {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: white !important;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.cta-content-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
  color: white;
}

/* ===== SOLUTIONS PAGE ===== */
.solutions-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.solution-card > p { color: #64748b; line-height: 1.6; margin-bottom: 1.5rem; }

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.features-list li {
  color: #64748b;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
}

.learn-more-btn {
  border: 2px solid #14b8a6;
  color: #14b8a6;
  background: transparent;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.learn-more-btn:hover {
  background-color: #14b8a6;
  color: white;
}

/* ===== INDUSTRIES PAGE ===== */
.industries-page-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.industries-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.industry-page-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.industry-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.industry-page-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.industry-page-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.industry-page-card > p { color: #64748b; line-height: 1.5; margin-bottom: 1rem; }

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  color: #64748b;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
}

/* ===== ABOUT PAGE ===== */
.mission-section {
  padding: 6rem 0;
  background: white;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mission-card {
  text-align: center;
  padding: 3rem 2rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
}

.mission-card h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.mission-card p { color: #64748b; line-height: 1.6; font-size: 1.1rem; margin: 0; }

.why-choose-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.feature-card p { color: #64748b; line-height: 1.6; margin: 0; }

.team-section {
  padding: 6rem 0;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid #14b8a6;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.team-card .role {
  color: #14b8a6;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card .bio { color: #64748b; line-height: 1.5; font-size: 0.9rem; margin: 0; }

/* ===== CASE STUDIES PAGE ===== */
.case-studies-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.case-study-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-study-image {
  height: 200px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content { padding: 2rem; }

.case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.case-study-content .industry {
  color: #14b8a6;
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-study-content .challenge {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.results h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.results ul { list-style: none; padding: 0; margin: 0; }

.results li {
  color: #64748b;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.results li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
}

.testimonials-section {
  padding: 6rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content { margin-bottom: 1.5rem; }

.testimonial-content p {
  color: #64748b;
  line-height: 1.6;
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #14b8a6;
  flex-shrink: 0;
}

.author-image img { width: 100%; height: 100%; object-fit: cover; }

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.author-info p { color: #64748b; font-size: 0.9rem; margin: 0; }

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.contact-form-container h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-form-container > p { color: #64748b; margin-bottom: 2rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field { width: 100%; }
.full-width { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #1e293b;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #14b8a6;
}

.form-field textarea { resize: vertical; min-height: 130px; }

.submit-button {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.submit-button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.contact-info-container {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.contact-info-container h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-info-container > p { color: #64748b; margin-bottom: 2rem; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.contact-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-details p { color: #64748b; margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact-details a { color: #64748b; }
.contact-details a:hover { color: #14b8a6; }

.schedule-button {
  margin-top: 0.5rem;
  border: 2px solid #14b8a6;
  color: #14b8a6;
  background: transparent;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.schedule-button:hover { background-color: #14b8a6; color: white; }

.social-section {
  border-top: 1px solid #e2e8f0;
  padding-top: 2rem;
}

.social-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.social-links { display: flex; gap: 1rem; }

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  color: #14b8a6;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 700;
}

.social-links a:hover {
  background-color: #14b8a6;
  color: white;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
}

.footer-section h3 {
  color: #14b8a6;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section .logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-section .logo-container .logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-section .company-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-section .tagline {
  color: #14b8a6;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section .description {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section ul li { margin-bottom: 0.5rem; }

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover { color: #14b8a6; }

.footer-contact-info { margin-bottom: 1.5rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.footer-contact-item .icon {
  color: #14b8a6;
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-social-links { display: flex; gap: 1rem; }

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  color: #14b8a6;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-social-links a:hover {
  background-color: #14b8a6;
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  background-color: #0f172a;
  border-top: 1px solid #334155;
  padding: 1.5rem 0;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94a3b8;
}

.footer-bottom-content p { margin: 0; color: #94a3b8; }

.legal-links { display: flex; gap: 2rem; }

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover { color: #14b8a6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-content { gap: 1.5rem; padding: 0 0.75rem; }
  .desktop-nav { gap: 1.5rem; }
  .cta-button { min-width: 200px; padding: 0.875rem 1.5rem; font-size: 0.95rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-title { font-size: 3rem; }
  .hero-buttons { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-menu-button { display: block; }
  .cta-button { display: none; }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }

  .header-content { gap: 1rem; padding: 0 0.5rem; height: 60px; }
  .logo-container .logo { height: 45px; max-width: 180px; }
  .company-name { font-size: 1.25rem; }

  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-visual { width: 280px; height: 280px; }

  .section-header h2 { font-size: 2rem; }
  .section-header p { font-size: 1.1rem; }

  .benefits-grid, .industries-grid, .solutions-grid,
  .industries-page-grid, .features-grid, .team-grid,
  .case-studies-grid, .testimonials-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { padding: 2rem 1rem; }

  .cta-content h2 { font-size: 2rem; }
  .cta-content p { font-size: 1.1rem; }

  .contact-form-container, .contact-info-container { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-method { flex-direction: column; text-align: center; }
  .contact-icon { margin: 0 auto; }

  .footer-content { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1rem 1rem; }
  .footer-bottom-content { flex-direction: column; gap: 1rem; text-align: center; }
  .legal-links { gap: 1rem; }

  .page-hero-section { padding: 4rem 0 3rem; }
  .page-hero-section h1 { font-size: 2.5rem; }
  .page-hero-section .hero-subtitle { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.1rem; }

  .header-content { padding: 0 0.25rem; gap: 0.5rem; height: 55px; }
  .company-name { font-size: 1.1rem; }
  .logo-container .logo { height: 40px; max-width: 160px; }

  .mobile-nav { padding: 0.75rem; }
  .mobile-nav a { padding: 0.75rem; font-size: 0.95rem; }

  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-primary, .cta-secondary { width: 100%; max-width: 300px; }

  .benefit-card, .industry-page-card { padding: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }

  .contact-section { padding: 4rem 0; }
  .contact-form-container, .contact-info-container { padding: 1.5rem; }
  .contact-methods { gap: 1.5rem; }
  .contact-method { padding: 1rem; }

  .footer-content { padding: 1.5rem 0.5rem 1rem; }
  .footer-bottom { padding: 1rem 0; }
  .footer-bottom-content { padding: 0 0.5rem; }
  .legal-links { flex-direction: column; gap: 0.5rem; }

  .solution-card { padding: 1.5rem; }
  .case-study-content, .testimonial-card { padding: 1.5rem; }
  .mission-card { padding: 1.5rem; }

  .legal-content-section { padding: 3rem 0; }
  .legal-content { padding: 0 0.5rem; }
}

/* ===== LEGAL PAGES (Terms, Refund Policy, Privacy Policy) ===== */
.legal-content-section {
  padding: 5rem 0 6rem;
  background-color: #fff;
}

.legal-content {
  max-width: 850px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-content .legal-updated {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  margin: 2.5rem 0 1rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary, #0f172a);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.25rem 1.25rem;
  padding-left: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #1e3a8a;
  text-decoration: underline;
}

.legal-content strong {
  color: var(--text-primary, #0f172a);
}

.legal-content .legal-contact-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
