/* ==========================================================================
   Righteous Hero — Professional Business Website
   Computer Systems Design & Integrated Systems Design
   ========================================================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  background-color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3.25rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: #e11d48;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #be123c;
}

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

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e11d48;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #475569;
  max-width: 650px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary {
  background: #e11d48;
  color: #ffffff;
  border-color: #e11d48;
}

.btn-primary:hover {
  background: #be123c;
  border-color: #be123c;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.3);
}

.btn-outline {
  background: transparent;
  color: #1e293b;
  border-color: #cbd5e1;
}

.btn-outline:hover {
  background: #1e293b;
  color: #ffffff;
  border-color: #1e293b;
  transform: translateY(-1px);
}

.btn-light {
  background: #ffffff;
  color: #1e293b;
  border-color: #ffffff;
}

.btn-light:hover {
  background: #f1f5f9;
  border-color: #f1f5f9;
  color: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #0f172a;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: #e11d48;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.25rem;
}

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

.main-nav a {
  color: #475569;
  font-size: 0.925rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #e11d48;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 160px 0 120px;
  background: #f8fafc;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, #0f172a 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, #0f172a 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-geo {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  pointer-events: none;
}

.geo-shape {
  position: absolute;
  border-radius: 12px;
}

.geo-shape-1 {
  width: 180px;
  height: 180px;
  background: #e11d48;
  opacity: 0.08;
  transform: rotate(45deg);
  top: -40px;
  right: 60px;
}

.geo-shape-2 {
  width: 120px;
  height: 120px;
  background: #1e293b;
  opacity: 0.06;
  border-radius: 50%;
  top: 120px;
  right: -20px;
}

.geo-shape-3 {
  width: 90px;
  height: 90px;
  background: #e11d48;
  opacity: 0.05;
  transform: rotate(15deg);
  top: 60px;
  right: 180px;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 1.75rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #e11d48;
  border-radius: 50%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: #e11d48;
}

.hero-text {
  font-size: 1.2rem;
  color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 520px;
}

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

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

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hero-card.offset {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  z-index: -1;
  opacity: 0.5;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #e11d48;
  font-size: 1.35rem;
}

.hero-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* --- About Section --- */
.about {
  padding: 100px 0;
  background: #ffffff;
}

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

.about-visual {
  position: relative;
}

.about-image-placeholder {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 16px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-geo-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 3px solid #e11d48;
  border-radius: 50%;
  opacity: 0.15;
  top: -30px;
  right: -40px;
}

.about-image-placeholder .inner-icon {
  font-size: 5rem;
  color: #cbd5e1;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #e11d48;
  color: #ffffff;
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.25);
}

.about-experience-badge .badge-number {
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.about-experience-badge .badge-text {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #475569;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-value-icon {
  width: 36px;
  height: 36px;
  background: #fef2f2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e11d48;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-value-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.about-value-item p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0;
}

/* --- Services Section --- */
.services {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
}

.services-bg-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  pointer-events: none;
  opacity: 0.03;
  background-image: radial-gradient(circle, #0f172a 1px, transparent 1px);
  background-size: 20px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #e11d48;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e11d48;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

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

/* --- Industries Section --- */
.industries {
  padding: 100px 0;
  background: #ffffff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

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

.industry-card:hover {
  background: #ffffff;
  border-color: #e11d48;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.industry-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  display: block;
}

.industry-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.industry-card p {
  font-size: 0.825rem;
  color: #64748b;
  margin-bottom: 0;
}

/* --- Process Section --- */
.process {
  padding: 100px 0;
  background: #f8fafc;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e11d48;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-number {
  background: #e11d48;
  color: #ffffff;
  border-color: #e11d48;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.25);
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
}

/* --- Capabilities Section --- */
.capabilities {
  padding: 100px 0;
  background: #ffffff;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: all 0.25s ease;
}

.capability-item:hover {
  border-color: #e11d48;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.capability-dot {
  width: 10px;
  height: 10px;
  background: #e11d48;
  border-radius: 50%;
  flex-shrink: 0;
}

.capability-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
}

/* --- Why Us Section --- */
.why-us {
  padding: 100px 0;
  background: #f8fafc;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-us-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  gap: 1.25rem;
}

.why-us-card:hover {
  border-color: #e11d48;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.why-us-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.why-us-card:hover .why-us-number {
  color: #fef2f2;
}

.why-us-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-us-card p {
  color: #64748b;
  font-size: 0.925rem;
  margin-bottom: 0;
}

/* --- Contact Section --- */
.contact {
  padding: 100px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

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

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e11d48;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
  color: #64748b;
}

.contact-detail p {
  color: #0f172a;
  font-weight: 500;
  margin-bottom: 0;
}

.contact-form {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.5rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

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

.form-submit {
  width: 100%;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: #1e293b;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-brand .logo {
  color: #ffffff;
}

.footer-heading {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.825rem;
  color: #64748b;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal a {
  color: #64748b;
  font-size: 0.825rem;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* --- Legal Pages --- */
.legal-page {
  padding: 140px 0 80px;
  background: #ffffff;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page p {
  color: #475569;
  margin-bottom: 1rem;
}

.legal-page ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: #475569;
}

.legal-page li {
  margin-bottom: 0.4rem;
}

.legal-last-updated {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-placeholder {
    height: 300px;
  }

  .about-experience-badge {
    left: 0;
    bottom: -15px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-toggle {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }
}
