#preloader,
body {
  background: var(--dark);
}
.brand-text span,
.btn-primary:hover,
.footer-logo-name span,
.hero-title span,
.nav-link:hover {
  color: var(--orange);
}
#preloader.hidden,
#scrollTop {
  opacity: 0;
  visibility: hidden;
}
#cta,
#hero,
.about-image-wrapper,
.article-featured-img,
.blog-card,
.blog-card__img,
.blog-img,
.capability-card,
.industry-card,
.map-placeholder,
.preloader-bar,
.project-card,
.related-card,
.service-card,
.stat-card,
.testimonial-slider {
  overflow: hidden;
}
:root {
  --orange: #f97316;
  --orange-dark: #c2570f;
  --steel: #475569;
  --slate-light: #cbd5e1;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --light: #f8fafc;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body {
  font-family: Inter, sans-serif;
  color: var(--light);
}
.nav-link,
.preloader-text,
h1,
h2,
h3,
h4,
h5 {
  font-family: Rajdhani, sans-serif;
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.gear-container {
  position: relative;
  width: 120px;
  height: 120px;
}
.gear {
  position: absolute;
  border-radius: 50%;
  border: 8px solid transparent;
  border-top-color: var(--orange);
  border-right-color: var(--orange);
  animation: 1.2s linear infinite spin;
}
.gear-outer {
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
  border-width: 6px;
}
.gear-inner {
  width: 70px;
  height: 70px;
  top: 25px;
  left: 25px;
  animation-direction: reverse;
  animation-duration: 0.8s;
  border-color: #cbd5e1 #cbd5e1 transparent transparent;
}
.gear-dot {
  width: 20px;
  height: 20px;
  background: var(--orange);
  top: 50px;
  left: 50px;
  border: none;
  animation: 1.2s ease-in-out infinite pulse;
  border-radius: 50%;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}
.preloader-text {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-3);
  margin-top: 1rem;
  border-radius: 2px;
}
.btn-primary,
.nav-link::after,
.preloader-fill {
  background: var(--orange);
}
.preloader-fill {
  height: 100%;
  width: 0;
  animation: 2s ease-in-out forwards fill;
  border-radius: 2px;
}
@keyframes fill {
  to {
    width: 100%;
  }
}
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: 0.4s;
  padding: 1rem 0;
}
#hero,
.industry-card,
.nav-link,
.service-card {
  position: relative;
}
#navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
#scrollTop:hover,
.faq-search button:hover,
.sidebar-search button:hover {
  background: var(--orange-dark);
}
.nav-link {
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  padding-bottom: 4px;
}
.btn-outline,
.btn-primary {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  transition: 0.3s;
  display: inline-block;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  font-family: Rajdhani, sans-serif;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s;
}
.cnc-card:hover::before,
.des-card:hover::before,
.fab-type-card:hover::before,
.insp-card:hover::before,
.nav-link:hover::after,
.navbar,
.proc-card:hover::before,
.service-card:hover::before,
.weld-card:hover::before {
  width: 100%;
}
.btn-primary {
  color: #fff;
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: 0 0;
}
.btn-outline {
  background: 0 0;
  color: var(--light);
  border: 2px solid var(--slate-light);
}
.btn-outline:hover,
.faq-cat-btn:hover,
.page-link:hover:not(.active) {
  border-color: var(--orange);
  color: var(--orange);
}
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0, #1e293b 50%, #0f172a 100%);
}
.service-icon,
.service-link {
  display: flex;
  align-items: center;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}
.about-stat-label,
.blog-category,
.contact-label,
.service-link {
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-pill {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(203, 213, 225, 0.2);
  padding: 1rem 1.5rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  text-align: center;
}
#about,
#about-processing,
#cnc-materials,
#cnc-process,
#contact,
#design-process,
#design-tools,
#fab-process,
#industries,
#inspection-methods,
#inspection-process,
#materials,
#processing-materials,
#processing-process,
#processing-quote,
#projects,
#quote,
#welding-process,
#why,
.bg-dark-2,
.blog-card,
.faq-item,
.process-card,
select.form-input option {
  background: var(--dark-2);
}
.about-stat {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(15, 23, 42, 0.5);
}
.about-stat-num {
  font-family: Rajdhani, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
}
.about-stat-label {
  color: var(--slate-light);
  font-size: 0.85rem;
}
#blog,
#capabilities,
#cnc-capabilities,
#cnc-projects,
#cnc-services,
#design-capabilities,
#design-projects,
#design-services,
#fab-projects,
#fab-types,
#faq,
#inspection-capabilities,
#inspection-projects,
#inspection-services,
#process,
#processing-capabilities,
#processing-projects,
#processing-services,
#services,
#testimonials,
#welding-capabilities,
#welding-services,
.testimonials-section {
  background: var(--dark);
}
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(71, 85, 105, 0.3);
  padding: 2rem;
  transition: 0.4s;
  cursor: pointer;
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
}
.cnc-card::before,
.des-card::before,
.fab-type-card::before,
.insp-card::before,
.proc-card::before,
.service-card::before,
.weld-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.4s;
}
.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.05) 0,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.service-card:hover::after {
  opacity: 1;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  justify-content: center;
  margin-bottom: 1.5rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
#scrollTop,
.footer-logo-icon,
.logo-box {
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}
.service-card h3 {
  font-family: Rajdhani, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--slate-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-link {
  color: var(--orange);
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  gap: 0.5rem;
  text-decoration: none;
  transition: gap 0.3s;
}
.industry-card,
.why-card {
  border: 1px solid rgba(71, 85, 105, 0.2);
  transition: 0.3s;
}
.service-link:hover {
  gap: 1rem;
}
.industry-card {
  background: var(--dark);
  padding: 2rem 1.5rem;
  text-align: center;
}
.industry-card:hover {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.05);
  transform: translateY(-4px);
}
.industry-icon,
.method-icon,
.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.industry-card h3 {
  font-family: Rajdhani, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.process-connector {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--orange) 0,
    rgba(249, 115, 22, 0.2) 100%
  );
  z-index: 1;
}
.blog-category,
.testimonial-card::before {
  top: 1rem;
  font-family: Rajdhani, sans-serif;
}
.project-card {
  background: var(--dark-3);
}
#stats {
  background: linear-gradient(
      135deg,
      rgba(249, 115, 22, 0.15) 0,
      rgba(15, 23, 42, 0) 50%,
      rgba(249, 115, 22, 0.1) 100%
    ),
    var(--dark);
}
.why-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--dark);
}
.why-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateX(4px);
}
.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}
#scrollTop svg,
.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
}
.why-card h4 {
  font-family: Rajdhani, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.capability-card p,
.why-card p {
  color: var(--slate-light);
  font-size: 0.85rem;
  line-height: 1.6;
}
.testimonial-slider {
  position: relative;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s;
}
.testimonial-card {
  min-width: 100%;
  padding: 3rem;
  background: var(--dark-2);
  border: 1px solid rgba(71, 85, 105, 0.3);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  left: 2rem;
  font-size: 8rem;
  color: rgba(249, 115, 22, 0.1);
  line-height: 1;
}
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--slate-light);
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar,
.contact-icon {
  display: flex;
  align-items: center;
}
.author-avatar {
  background: var(--orange);
  justify-content: center;
}
.author-name {
  font-family: Rajdhani, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.author-role {
  color: var(--orange);
  text-transform: uppercase;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.dot {
  width: 30px;
  height: 3px;
  background: var(--dark-3);
  cursor: pointer;
  transition: 0.3s;
}
#scrollTop,
.dot.active {
  width: 50px;
}
#scrollTop,
.blog-category,
.dot.active,
.social-btn:hover {
  background: var(--orange);
}
.blog-img {
  height: 200px;
  position: relative;
}
.blog-category {
  position: absolute;
  left: 1rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
}
.blog-content {
  padding: 1.5rem;
}
.blog-card__meta,
.blog-meta {
  color: var(--slate-light);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
}
.blog-card h3,
.blog-card__title {
  font-family: Rajdhani, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-excerpt {
  color: var(--slate-light);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.hero-desc,
.services-header__subtitle {
  line-height: 1.8;
  color: var(--slate-light);
}
.contact-card {
  background: var(--dark);
  border: 1px solid rgba(71, 85, 105, 0.2);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.contact-icon,
.social-btn {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  justify-content: center;
}
.logo-box,
.social-btn {
  width: 40px;
  height: 40px;
}
.contact-icon svg {
  stroke: var(--orange);
  stroke-width: 1.5;
}
.contact-label {
  color: var(--slate-light);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.footer-heading,
.metric-label,
.stars {
  letter-spacing: 2px;
}
.contact-value {
  font-family: Rajdhani, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
footer {
  background: #060e1c;
  border-top: 1px solid rgba(249, 115, 22, 0.2);
  padding: 4rem 0 0;
}
.faq-search input:focus,
.form-input:focus,
.newsletter-input:focus,
.sidebar-search input:focus,
.social-btn:hover {
  border-color: var(--orange);
}
.footer-link {
  color: var(--slate-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.5rem;
}
#scrollTop,
.social-btn {
  display: flex;
  transition: 0.3s;
  cursor: pointer;
}
.footer-link:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-heading {
  font-family: Rajdhani, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 1.5rem;
}
.social-btn {
  align-items: center;
  justify-content: center;
}
.social-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}
.social-btn:hover svg {
  stroke: white;
}
.newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(71, 85, 105, 0.3);
  color: #fff;
  padding: 0.6rem 1rem;
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  outline: 0;
  flex: 1;
}
.brand-text,
.metric-label,
.metric-value {
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
}
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  height: 50px;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
#scrollTop.visible {
  opacity: 1;
  visibility: visible;
}
#scrollTop:hover {
  transform: translateY(-3px);
}
#scrollTop svg {
  stroke: white;
  stroke-width: 2;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.97);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.hero-container,
.hero-panel,
.hero-section {
  position: relative;
}
.mobile-menu-overlay.open {
  display: flex;
}
.stars {
  color: var(--orange);
}
.proj-1,
.proj-cnc-1,
.proj-fab-1,
.proj-insp-1,
.proj-proc-1 {
  background: linear-gradient(135deg, #1e293b 0, #334155 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-2,
.proj-cnc-2,
.proj-fab-2,
.proj-insp-2,
.proj-proc-2 {
  background: linear-gradient(135deg, #292524 0, #44403c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-3,
.proj-cnc-3,
.proj-fab-3,
.proj-insp-3,
.proj-proc-3 {
  background: linear-gradient(135deg, #1c1917 0, #3d3121 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-4,
.proj-cnc-4,
.proj-fab-4,
.proj-insp-4,
.proj-proc-4 {
  background: linear-gradient(135deg, #1e1b2e 0, #2d2a45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-bg-1 {
  background: linear-gradient(135deg, #1e293b 0, #334155 100%);
}
.blog-bg-2 {
  background: linear-gradient(135deg, #292524 0, #44403c 100%);
}
.blog-bg-3 {
  background: linear-gradient(135deg, #1c1917 0, #3d3121 100%);
}
@media (max-width: 768px) {
  .form-row,
  .projects-main-grid,
  .quote-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 4rem 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .process-connector {
    display: none;
  }
  .glass-form {
    padding: 1.5rem;
  }
  .projects-main-grid {
    grid-template-rows: auto;
  }
  .project-card--span2 {
    grid-row: auto;
  }
}
.navbar-inner,
.navbar-logo {
  display: flex;
  align-items: center;
}
body,
html {
  overflow-x: hidden;
  width: 100%;
}
.navbar-inner {
  justify-content: space-between;
}
.navbar-logo {
  text-decoration: none;
  gap: 0.75rem;
}
.logo-box,
.nav-links {
  display: flex;
  align-items: center;
}
.logo-box {
  background: var(--orange);
  justify-content: center;
}
.brand-text {
  font-size: 1.5rem;
  color: var(--light);
}
.nav-links {
  gap: 2.5rem;
}
.hero-container {
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-grid,
.insp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 8%;
}
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.article-body p,
.form-group,
.hero-title,
.policy-content p,
.quote-title,
.terms-content p,
.why-title {
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hero-panel {
  background: var(--dark-2);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2rem;
}
.gear-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: rgba(249, 115, 22, 0.1);
  border: 2px solid rgba(249, 115, 22, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.metric-box {
  background: var(--dark);
  padding: 1.5rem;
  border-left: 3px solid var(--orange);
}
.metric-box.alt {
  border-left: 3px solid #475569;
}
.metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.metric-value {
  font-size: 1.8rem;
}
.status-bar {
  background: var(--dark);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: 1.5s ease-in-out infinite pulse;
}
.cert-box {
  background: var(--dark);
  padding: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.cert-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.contact-header,
.industries-header,
.policy-header,
.services-header,
.terms-header {
  text-align: center;
  margin-bottom: 4rem;
}
.blog-header .section-tag,
.contact-header .section-tag,
.industries-header .section-tag,
.process-header .section-tag,
.services-header .section-tag,
.testimonials-header .section-tag {
  justify-content: center;
}
.services-header__subtitle {
  max-width: 600px;
  margin: 1rem auto 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.industry-card__desc {
  color: var(--slate-light);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.metric-item__value,
.process-card__title--active {
  color: var(--orange);
  font-weight: 700;
  font-family: Rajdhani, sans-serif;
}
.process-header {
  text-align: center;
  margin-bottom: 5rem;
}
.process-step__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.process-card--active {
  background: var(--dark-2);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 1.5rem;
  text-align: center;
}
.metrics-panel,
.metrics-quote {
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.divider,
.process-number--active,
.slider-btn:hover {
  background: var(--orange);
}
.process-card__title--active {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.projects-grid,
.projects-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 300px 300px;
  gap: 1rem;
}
.projects-main-grid .project-card:not(.project-card--span2) {
  aspect-ratio: unset;
  height: 100%;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.why-subtitle {
  margin-bottom: 2.5rem;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.metrics-panel {
  background: var(--dark);
  padding: 2.5rem;
  position: relative;
}
.metrics-panel__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  padding: 0.5rem 2rem;
  font-family: Rajdhani, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-badge,
.metric-item__label {
  letter-spacing: 1px;
  text-transform: uppercase;
}
.metrics-panel .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 0;
}
.metric-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--dark-2);
}
.metric-item__value {
  font-size: 3rem;
}
.metric-item__label {
  color: var(--slate-light);
  font-size: 0.8rem;
}
.metrics-quote {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(249, 115, 22, 0.1);
}
.metrics-quote__text {
  color: var(--slate-light);
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: center;
}
.metrics-quote__author {
  color: var(--orange);
  font-family: Rajdhani, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.75rem;
}
.blog-header,
.faq-header,
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}
.testimonial-stars {
  margin-left: auto;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.slider-btn {
  background: rgba(71, 85, 105, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.5);
  color: #fff;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-img--flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-link {
  font-size: 0.85rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card__address {
  color: var(--slate-light);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}
.map-placeholder {
  background: var(--dark);
  border: 1px solid rgba(71, 85, 105, 0.3);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.map-placeholder__grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(71, 85, 105, 0.1) 40px,
      rgba(71, 85, 105, 0.1) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(71, 85, 105, 0.1) 40px,
      rgba(71, 85, 105, 0.1) 41px
    );
}
.cta-container,
.map-placeholder__content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.map-placeholder__icon {
  margin: auto auto 0.75rem;
}
.map-placeholder__label {
  font-family: Rajdhani, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-light);
}
.map-placeholder__link {
  color: var(--orange);
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand,
.footer-socials {
  gap: 0.75rem;
  display: flex;
}
.footer-brand {
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-name {
  font-family: Rajdhani, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.footer-newsletter-desc,
.footer-tagline {
  font-size: 0.875rem;
  color: var(--slate-light);
}
.footer-tagline {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-newsletter-desc {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.footer-newsletter-form,
.sidebar-search {
  display: flex;
  gap: 0.5rem;
}
.footer-newsletter-btn {
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid rgba(71, 85, 105, 0.2);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom__copy,
.related-card__date {
  color: var(--slate-light);
  font-size: 0.8rem;
}
.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom__link {
  color: var(--slate-light);
  font-size: 0.8rem;
  text-decoration: none;
}
.footer-bottom__link:hover,
.hero-badge,
.text-orange {
  color: var(--orange);
}
@media (min-width: 1024px) {
  .hero-grid,
  .quote-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(249, 115, 22, 0.5) 40px,
      rgba(249, 115, 22, 0.5) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(249, 115, 22, 0.5) 40px,
      rgba(249, 115, 22, 0.5) 41px
    );
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.15) 0,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}
.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(71, 85, 105, 0.2) 0,
    transparent 70%
  );
  bottom: -50px;
  left: -50px;
}
.cert-badge,
.hero-badge {
  background: rgba(249, 115, 22, 0.1);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 0.3rem 0.8rem;
  font-family: Rajdhani, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-light);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Rajdhani, sans-serif;
  animation: 2s ease-in-out infinite bounce;z-index: 99;
}
#cta,
.about-image-wrapper,
.process-grid,
.stat-card {
  position: relative;
}
.cert-badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
.section-padding {
  padding: 6rem 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-tag {
  color: var(--orange);
  font-family: Rajdhani, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--orange);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--slate-light);
  line-height: 1.8;
  max-width: 600px;
}
.about-image-wrapper {
  border: 2px solid rgba(249, 115, 22, 0.3);
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}
.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.2) 0,
    transparent 60%
  );
  z-index: 1;
}
.cert-badge {
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 0.4rem 0.8rem;
  color: var(--slate-light);
  font-size: 0.85rem;
}
.cnc-card,
.des-card,
.fab-type-card,
.insp-card,
.proc-card,
.weld-card {
  background: var(--dark-2);
  border: 1px solid rgba(71, 85, 105, 0.3);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
}
.cnc-card:hover,
.des-card:hover,
.fab-type-card:hover,
.insp-card:hover,
.proc-card:hover,
.weld-card:hover {
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.cnc-icon,
.des-icon,
.fab-type-icon,
.insp-icon,
.proc-icon,
.weld-icon {
  width: 70px;
  height: 70px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.cnc-icon svg,
.des-icon svg,
.fab-type-icon svg,
.insp-icon svg,
.proc-icon svg,
.weld-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}
.cnc-card h3,
.des-card h3,
.fab-type-card h3,
.insp-card h3,
.proc-card h3,
.weld-card h3 {
  font-family: Rajdhani, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cnc-card p,
.des-card p,
.fab-type-card p,
.insp-card p,
.proc-card p,
.weld-card p {
  color: var(--slate-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.cnc-specs,
.des-specs,
.fab-specs,
.insp-specs,
.proc-specs,
.weld-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.cnc-spec,
.des-spec,
.fab-spec,
.insp-spec,
.proc-spec,
.weld-spec {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  color: var(--orange);
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  font-family: Rajdhani, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cta-btn--outline,
.cta-btn--primary {
  padding: 0.9rem 2.5rem;
  transition: 0.3s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  text-decoration: none;
}
.cta-btn--outline,
.cta-btn--primary,
.cta-tagline,
.cta-title {
  font-weight: 700;
  font-family: Rajdhani, sans-serif;
}
#cnc-stats,
#fab-stats,
#processing-stats {
  background: linear-gradient(
      135deg,
      rgba(249, 115, 22, 0.15) 0,
      rgba(15, 23, 42, 0) 50%,
      rgba(249, 115, 22, 0.1) 100%
    ),
    var(--dark-2);
}
#cta {
  background: linear-gradient(135deg, var(--orange) 0, #c2570f 100%);
}
#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 21px
  );
}
.cta-tagline {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.cta-btn--outline,
.cta-btn--primary,
.form-label,
.stat-label {
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.cta-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.form-privacy,
.projects-bottom {
  margin-top: 1rem;
}
.cta-actions,
.faq-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn--primary {
  background: #fff;
  color: #0f172a;
}
.cta-btn--primary:hover {
  background: var(--dark);
  color: #fff;
}
.cta-btn--outline {
  background: 0 0;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.cta-btn--outline:hover {
  border-color: #fff;
}
.glass-form {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 3rem;
}
.form-label {
  display: block;
  color: var(--slate-light);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  font-family: Rajdhani, sans-serif;
  font-weight: 600;
}
.article-header,
.quote-checklist,
.quote-subtitle {
  margin-bottom: 2rem;
}
.form-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.5);
  color: var(--light);
  padding: 0.75rem 1rem;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: 0;
}
.cert,
.quote-check-icon {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.faq-answer,
.form-privacy {
  color: var(--slate-light);
}
.form-input::placeholder {
  color: rgba(203, 213, 225, 0.4);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
  text-align: center;
}
.form-privacy {
  font-size: 0.75rem;
  text-align: center;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cert {
  color: var(--orange);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
}
.cnc-grid,
.des-grid,
.fab-types-grid,
.proc-grid,
.weld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}
.capabilities-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.materials-grid,
.methods-grid,
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.project-card--span2 {
  grid-row: span 2;
  height: 100%;
  min-height: 300px;
}
.projects-grid .project-card:not(.project-card--span2) {
  aspect-ratio: unset;
  height: 100%;
}
.project-card--wide {
  aspect-ratio: unset;
  height: 200px;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.quote-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote-check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--slate-light);
  font-size: 0.9rem;
}
.capability-value,
.material-grade {
  font-weight: 700;
  color: var(--orange);
  font-family: Rajdhani, sans-serif;
  margin-bottom: 0.5rem;
}
.quote-check-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.capability-card h3 {
  font-family: Rajdhani, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.capability-value {
  font-size: 2rem;
}
.material-card,
.method-card,
.tool-card {
  background: var(--dark);
  border: 1px solid rgba(71, 85, 105, 0.2);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: 0.3s;
}
.material-card:hover,
.method-card:hover,
.tool-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.material-grade {
  font-size: 1.4rem;
}
.material-name {
  font-family: Rajdhani, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.material-desc {
  color: var(--slate-light);
  font-size: 0.8rem;
  line-height: 1.5;
}
.method-card h3,
.stat-number,
.tool-card h3 {
  color: var(--orange);
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
}
.stat-card {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}
.stat-number {
  font-size: 3.5rem;
  line-height: 1;
}
.method-desc,
.project-details,
.stat-label,
.tool-desc {
  color: var(--slate-light);
  margin-top: 0.5rem;
}
.stat-suffix {
  font-size: 2rem;
}
.stat-label {
  font-size: 0.9rem;
}
.method-card h3,
.tool-card h3 {
  font-size: 1.2rem;
}
.method-desc,
.tool-desc {
  font-size: 0.85rem;
  line-height: 1.5;
}
.project-title {
  font-family: Rajdhani, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.project-details {
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s 0.1s;
}
.project-card:hover .project-details {
  opacity: 1;
  transform: translateY(0);
}
.project-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s;
}
.capability-card,
.process-number,
.process-step,
.project-card {
  position: relative;
}
.capability-card,
.process-card {
  text-align: center;
  transition: 0.3s;
}
.project-card:hover .project-bg {
  transform: scale(1.05);
}
.process-number {
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Rajdhani, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  z-index: 2;
}
.process-card {
  background: var(--dark);
  border: 1px solid rgba(71, 85, 105, 0.3);
  padding: 1.5rem;
}
.faq-item.open,
.process-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
}
.process-card__title {
  font-family: Rajdhani, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-card__desc {
  color: var(--slate-light);
  font-size: 0.8rem;
  line-height: 1.6;
}
.article-title span,
.blog-hero__title span,
.project-category {
  color: var(--orange);
}
.capability-card {
  background: var(--dark-2);
  border: 1px solid rgba(71, 85, 105, 0.2);
  padding: 2rem;
}
.capability-card:hover {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.03);
  transform: translateY(-4px);
}
.capability-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.project-card {
  cursor: pointer;
  background: var(--dark-3);
  border: 1px solid rgba(71, 85, 105, 0.3);
  min-height: 280px;
}
.project-info,
.project-overlay {
  position: absolute;
  transition: 0.4s;
}
.project-overlay {
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95) 0,
    rgba(15, 23, 42, 0.3) 60%,
    transparent 100%
  );
}
.blog-card,
.blog-hero {
  background: var(--dark-2);
}
.project-card:hover .project-overlay {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.98) 0,
    rgba(15, 23, 42, 0.8) 100%
  );
}
.project-info {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.project-category {
  font-family: Rajdhani, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.blog-card__category,
.blog-card__link {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
}
.blog-hero {
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}
.article-featured-img,
.blog-card,
.page-link,
.sidebar-search input {
  border: 1px solid rgba(71, 85, 105, 0.3);
}
.blog-hero__title,
.faq-title,
.policy-title,
.terms-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.blog-hero__subtitle,
.faq-subtitle {
  color: var(--slate-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 1rem auto 0;
  line-height: 1.8;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog-card {
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover,
.related-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.blog-card__img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  z-index: 2;
}
.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__excerpt {
  color: var(--slate-light);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.blog-card__link {
  color: var(--orange);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: gap 0.3s;
}
.blog-card__link:hover {
  gap: 1rem;
}
.blog-card__img-bg-1 {
  background: linear-gradient(135deg, #1e293b 0, #334155 100%);
}
.blog-card__img-bg-2 {
  background: linear-gradient(135deg, #292524 0, #44403c 100%);
}
.blog-card__img-bg-3 {
  background: linear-gradient(135deg, #1c1917 0, #3d3121 100%);
}
.blog-card__img-bg-4 {
  background: linear-gradient(135deg, #1e1b2e 0, #2d2a45 100%);
}
.blog-card__img-bg-5 {
  background: linear-gradient(135deg, #1e293b 0, #475569 100%);
}
.blog-card__img-bg-6 {
  background: linear-gradient(135deg, #1c1917 0, #44403c 100%);
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-2);
  color: var(--slate-light);
  font-family: Rajdhani, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
.faq-cat-btn.active,
.page-link.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.sidebar-search input {
  flex: 1;
  background: var(--dark);
  color: var(--light);
  padding: 0.6rem 1rem;
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  outline: 0;
}
.article-category,
.sidebar-search button {
  background: var(--orange);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.article-body h3,
.article-category,
.policy-content h3,
.sidebar-search button,
.terms-content h3 {
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
}
.sidebar-search button {
  border: none;
  padding: 0 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.blog-detail-container,
.page-container {
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-detail-grid,
  .blog-layout {
    grid-template-columns: 1fr 340px;
  }
}
.article-category {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}
.article-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--slate-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}
.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-featured-img {
  width: 100%;
  height: 400px;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}
.article-featured-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.08) 0,
    transparent 60%
  );
  z-index: 1;
}
.article-body {
  color: var(--slate-light);
  line-height: 1.9;
  font-size: 1.05rem;
}
.article-body h2,
.policy-content h2,
.terms-content h2 {
  font-family: Rajdhani, sans-serif;
  color: var(--light);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
}
.article-body h3,
.policy-content h3,
.terms-content h3 {
  color: var(--light);
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}
.article-body blockquote {
  border-left: 4px solid var(--orange);
  margin: 2rem 0;
  color: var(--slate-light);
  font-style: italic;
  background: rgba(249, 115, 22, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 0 8px 8px 0;
}
.article-body ol,
.article-body ul,
.policy-content ol,
.policy-content ul,
.terms-content ol,
.terms-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.comparison-table td,
.comparison-table th {
  padding: 1rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
}
.article-body li,
.policy-content li,
.terms-content li {
  margin-bottom: 0.5rem;
}
.article-body strong {
  color: var(--light);
}
.author-role,
.comparison-table th {
  color: var(--orange);
  letter-spacing: 1px;
  font-family: Rajdhani, sans-serif;
  text-transform: uppercase;
}
.article-body .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--dark-2);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}
.comparison-table td {
  color: var(--slate-light);
}
.comparison-table tr:nth-child(2n) {
  background: rgba(30, 41, 59, 0.5);
}
.author-bio {
  background: var(--dark-2);
  border: 1px solid rgba(71, 85, 105, 0.3);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
}
.author-avatar {
  width: 70px;
  height: 70px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.author-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.author-role {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.author-info p {
  color: var(--slate-light);
  font-size: 0.9rem;
  line-height: 1.7;
}
.recent-post-info h4,
.related-card__title {
  font-family: Rajdhani, sans-serif;
  line-height: 1.3;
  font-weight: 700;
}
.related-posts {
  margin-top: 4rem;
}
.related-heading {
  font-family: Rajdhani, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.related-card {
  background: var(--dark-2);
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: 0.3s;
}
.related-card__img {
  height: 160px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.related-card__category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--orange);
  color: #fff;
  font-family: Rajdhani, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
}
.related-card__body {
  padding: 1.25rem;
}
.related-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.recent-post-info a,
.related-card__title a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}
.category-list a:hover,
.faq-cta h3 span,
.faq-item.open .faq-question,
.faq-section-title span,
.faq-title span,
.policy-title span,
.recent-post-info a:hover,
.related-card__title a:hover,
.terms-title span {
  color: var(--orange);
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sidebar-widget {
  background: var(--dark-2);
  border: 1px solid rgba(71, 85, 105, 0.2);
  padding: 2rem;
}
.sidebar-heading {
  font-family: Rajdhani, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
}
.faq-cat-btn,
.faq-search button {
  letter-spacing: 1px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  text-transform: uppercase;
  cursor: pointer;
}
.category-list li,
.recent-post-item {
  border-bottom: 1px solid rgba(71, 85, 105, 0.15);
}
.category-list {
  list-style: none;
}
.category-list li {
  padding: 0.75rem 0;
}
.category-list li:last-child {
  border-bottom: none;
}
.category-list a {
  color: var(--slate-light);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  transition: color 0.3s;
}
.category-count {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
  padding: 0.1rem 0.6rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
}
.recent-post-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.recent-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.recent-post-img {
  width: 60px;
  height: 60px;
  background: var(--dark-3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recent-post-info h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.recent-post-date {
  color: var(--slate-light);
  font-size: 0.75rem;
}
.policy-meta,
.terms-meta {
  color: var(--slate-light);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.policy-content,
.terms-content {
  margin: 0 auto;
  color: var(--slate-light);
  line-height: 1.9;
  font-size: 1.05rem;
  background: var(--dark-2);
  padding: 20px;
  border-radius: 20px;
}
.faq-cat-btn,
.faq-search input {
  border: 1px solid rgba(71, 85, 105, 0.3);
  font-size: 0.9rem;
}
.policy-content a,
.terms-content a {
  color: var(--orange);
  text-decoration: none;
}
.policy-content a:hover,
.terms-content a:hover {
  text-decoration: underline;
}
.divider {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 1rem auto 2rem;
}
.faq-cat-btn,
.faq-cta,
.faq-item,
.faq-search input {
  background: var(--dark-2);
}
.faq-search {
  max-width: 500px;
  margin: 0 auto 3rem;
  display: flex;
  gap: 0.5rem;
}
.faq-search input {
  flex: 1;
  color: var(--light);
  padding: 0.75rem 1rem;
  font-family: Inter, sans-serif;
  outline: 0;
  transition: border-color 0.3s;
}
.faq-cat-btn,
.faq-question,
.faq-search button,
.faq-section-title {
  font-family: Rajdhani, sans-serif;
}
.faq-search input::placeholder {
  color: rgba(203, 213, 225, 0.4);
}
.faq-search button {
  background: var(--orange);
  border: none;
  color: #fff;
  padding: 0 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.faq-cat-btn {
  color: var(--slate-light);
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  transition: 0.3s;
}
.faq-content {
  margin: 0 auto;
}
.faq-section {
  margin-bottom: 3rem;
}
.faq-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.faq-answer p,
.faq-item {
  margin-bottom: 0.75rem;
}
.faq-item {
  border: 1px solid rgba(71, 85, 105, 0.2);
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: 0.3s;
}
.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.3);
}
.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-answer,
.no-results {
  display: none;
  color: var(--slate-light);
}
.faq-question-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}
.faq-item.open .faq-question-icon {
  transform: rotate(180deg);
}
.faq-answer {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(71, 85, 105, 0.15);
}
.faq-cta,
.no-results {
  padding: 3rem;
  text-align: center;
}
.faq-item.open .faq-answer,
.no-results.visible {
  display: block;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}
.faq-answer li {
  margin-bottom: 0.35rem;
}
.faq-cta {
  border: 1px solid rgba(249, 115, 22, 0.2);
  max-width: 800px;
  margin: 4rem auto 0;
}
.faq-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.faq-cta p {
  color: var(--slate-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}


/* FIX HORIZONTAL SCROLL */
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Mobile fixes */
@media (max-width: 768px) {

  .hero-title,
  .section-title {
    word-break: break-word;
  }

  .hero-actions,
  .cta-actions,
  .footer-newsletter-form {
    flex-direction: column;
  }


}

body {
  position: relative;
}




/* Desktop menu */
.nav-links {
  display: flex;
}

/* Mobile */
#hamburger {
  display: none;
}

@media (max-width: 768px) {
  .hero-grid{padding-top: 20%;}

  /* Hide desktop menu */
  .nav-links {
    display: none !important;
  }

  /* Show hamburger */
  #hamburger {
    display: block !important;
  }
}
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: clip; /* better than hidden */
    max-width: 100%;
}

/* Prevent all elements from causing overflow */
*,
*::before,
*::after {
    box-sizing: border-box;
}





/* Fix flex/grid overflow */
.flex,
.grid {
    min-width: 0;
}

/* Prevent long text overflow */
body {
    word-break: break-word;
}
.offending-element {
    max-width: 100%;
    overflow: hidden;
}
html,
body {
    overflow-x: hidden !important;
    max-width: 100%;
}