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

/* --- DESIGN TOKENS --- */
:root {
  --primary-color: #1e3a8a; /* Deep Royal/Slate Blue */
  --primary-light: #3b82f6; /* Modern Blue */
  --accent-color: #d50001;  /* Original KiAN Red */
  --accent-hover: #b00001;
  --text-dark: #1e293b;     /* Dark Slate Text */
  --text-light: #64748b;    /* Muted Text */
  --bg-light: #f8fafc;      /* Soft Page Background */
  --bg-white: #ffffff;
  --bg-dark: #0f172a;       /* Deep Slate/Black Footer */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-premium: 0 10px 30px rgba(30, 58, 138, 0.06);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --font-heading: 'Open Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- RESET & GENERAL STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* --- HEADER / NAVIGATION --- */
/* --- HEADER / NAVIGATION --- */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffffe6;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  transition: var(--transition-smooth);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.header-wrapper.scrolled .nav-container {
  height: 65px;
}

.header-wrapper.scrolled .logo-img {
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-color) !important;
  font-weight: 600;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  overflow: hidden;
}

/* Parallax active backdrops */
.hero-parallax {
  background-attachment: fixed;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

/* Glass panel styled CTA card on Home page */
.glass-cta {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
  text-align: left;
  margin-top: 80px;
  position: relative;
  z-index: 10;
  animation: fadeUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-color);
  color: var(--bg-white);
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(213, 0, 1, 0.4);
  transition: var(--transition-smooth);
}

.btn-premium:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213, 0, 1, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  padding: 0.8rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(213, 0, 1, 0.3);
}

/* --- SERVICES CARD GRID (HOME PAGE) --- */
.section-padding {
  padding: 6.5rem 0;
}

.bg-slate-50 {
  background-color: #f1f5f9;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  height: 60px;
  width: 60px;
  border-radius: var(--border-radius-sm);
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--primary-light);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background: var(--accent-color);
  color: var(--bg-white);
}

.service-icon {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

/* --- TWO-COLUMN CONTENT BLOCK --- */
.split-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.split-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.4));
  pointer-events: none;
}

.split-content {
  display: flex;
  flex-direction: column;
}

.split-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.split-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* --- INDUSTRIES SECTION --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.industry-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition-smooth);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.05);
}

.industry-card h3 {
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.industry-card h3 svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

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

/* --- SERVICES PAGE SPECIFICS --- */
.services-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.flow-step {
  background: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  text-align: center;
  position: relative;
}

.flow-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.15);
  position: absolute;
  top: 1rem;
  right: 2rem;
  line-height: 1;
}

.flow-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.flow-step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- ABOUT PAGE SPECIFICS --- */
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.about-card {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  border-left: 5px solid var(--accent-color);
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.about-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- CONTACT PAGE SPECIFICS --- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: rgba(213, 0, 1, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.info-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.info-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.info-details p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Modern Contact Form Style */
.contact-form-card {
  background: var(--bg-white);
  padding: 3.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.contact-form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-form-card p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid #cbd5e1;
  background-color: var(--bg-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-light);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-error {
  color: var(--accent-color);
  font-size: 0.8rem;
  margin-top: 0.35rem;
  font-weight: 500;
  display: none;
}

.form-input.is-invalid {
  border-color: var(--accent-color);
}

.form-input.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(213, 0, 1, 0.1);
}

/* Map placeholder */
.map-section {
  height: 400px;
  background-color: #e2e8f0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(241,245,249,0.8) 0%, rgba(226,232,240,0.9) 100%);
  color: var(--text-dark);
}

/* Newsletter Widget */
.newsletter-section {
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form .form-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
}

.newsletter-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-input:focus {
  background: var(--bg-white);
  color: var(--text-dark);
}

/* --- CAREERS PAGE ACCORDIONS --- */
.careers-info {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  margin-bottom: 3rem;
  border-left: 5px solid var(--accent-color);
}

.careers-info p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.careers-info p strong {
  color: var(--text-dark);
  display: block;
  margin-top: 1rem;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.accordion-item {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(226, 232, 240, 0.6);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.04);
}

.accordion-header {
  padding: 1.75rem 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

.accordion-item.active .accordion-header {
  background-color: #fafcfd;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.accordion-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-title span {
  font-size: 0.85rem;
  background: rgba(213, 0, 1, 0.08);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: var(--transition-smooth);
  color: var(--text-light);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 1200px; /* high absolute fallback for dynamic transition */
  opacity: 1;
}

.accordion-inner {
  padding: 2.25rem 2.5rem;
}

.job-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-desc {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.job-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.job-details-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.job-details-list li::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2.5rem 0;
  font-size: 0.95rem;
  border-top: 4px solid var(--accent-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: var(--bg-white);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col h3 span {
  color: var(--accent-color);
}

.footer-desc {
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a:hover {
  color: var(--bg-white);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-info svg {
  color: var(--accent-color);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-copyright {
  opacity: 0.8;
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .split-section {
    gap: 2.5rem;
  }
  
  .footer-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  /* Navigation toggling on mobile */
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--text-dark);
    font-size: 1.2rem;
    width: 100%;
    display: block;
  }
  

  /* Hero shrink */
  .hero {
    min-height: 60vh;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .glass-cta {
    padding: 2rem;
    margin-top: -40px;
    text-align: center;
  }
  
  .glass-cta h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }
  
  .glass-cta p {
    margin-bottom: 1.5rem;
  }
  
  /* Grids collapse to single columns */
  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-flow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-card {
    padding: 2rem;
  }
  
  .accordion-header {
    padding: 1.25rem 1.5rem;
  }
  
  .accordion-title {
    font-size: 1.1rem;
  }
  
  .accordion-inner {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .newsletter-section {
    padding: 2rem 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
