/* ===================== Raqeem Brand Theme ===================== */

:root {
  --orange-400: #ff7a33;
  --orange-500: #F25C05;
  --orange-600: #d94e00;
  --mustard-400: #eeb01a;
  --mustard-500: #E6A100;
  --charcoal-50: #e8e8e8;
  --charcoal-100: #c0c0c0;
  --charcoal-200: #a0a0a0;
  --charcoal-300: #787878;
  --charcoal-400: #505050;
  --charcoal-500: #383838;
  --charcoal-600: #282828;
  --charcoal-700: #1a1a1a;
  --charcoal-800: #111111;
  --charcoal-900: #0a0a0a;
  --white: #F9F9F9;
  --radius: 0.5rem;
}

/* ===================== Base ===================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--white);
  color: var(--charcoal-800);
}

body {
  min-height: 100dvh;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", "Impact", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===================== Container ===================== */

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

@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
}

/* ===================== Typography ===================== */

.font-display {
  font-family: "Bebas Neue", "Impact", -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.font-body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
}

.bebas-heading {
  font-family: "Bebas Neue", "Impact", -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 700;
}

.text-orange { color: var(--orange-500); }
.text-charcoal { color: var(--charcoal-800); }
.text-charcoal-400 { color: var(--charcoal-400); }
.text-charcoal-500 { color: var(--charcoal-500); }
.text-charcoal-600 { color: var(--charcoal-600); }
.text-white { color: #fff; }
.text-gray-400 { color: #9ca3af; }

.bg-white { background: #fff; }
.bg-orange-50 { background: rgba(242, 92, 5, 0.08); }
.bg-orange-500 { background: var(--orange-500); }
.bg-charcoal-800 { background: var(--charcoal-800); }
.bg-gray-100 { background: var(--white); }
.bg-gray-900 { background: var(--charcoal-800); }

/* ===================== Buttons ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: "Bebas Neue", "Impact", -apple-system, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--orange-500);
  color: white;
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 92, 5, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal-800);
  border-color: var(--charcoal-800);
}
.btn-outline:hover {
  background: var(--charcoal-800);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--orange-500);
}

@media (min-width: 640px) {
  .btn { font-size: 1rem; padding: 0.875rem 2.25rem; width: auto; }
}
@media (min-width: 768px) {
  .btn { font-size: 1.125rem; }
}

.btn-block { width: 100%; }
@media (min-width: 640px) { .btn-block { width: auto; } }

/* ===================== Header ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .header-inner { height: 80px; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 51;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: var(--orange-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .logo-mark { width: 40px; height: 40px; font-size: 1.125rem; }
}

.logo-text {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-800);
}
@media (min-width: 768px) { .logo-text { font-size: 1.5rem; } }

/* Desktop Nav */
.desktop-nav { display: none; }
@media (min-width: 1024px) { .desktop-nav { display: flex; align-items: center; gap: 2.5rem; } }

.desktop-nav a {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-600);
  position: relative;
  transition: color 0.2s;
  padding-bottom: 4px;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange-500);
  transition: width 0.3s;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--orange-500); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { width: 100%; }

.desktop-cta { display: none; }
@media (min-width: 1024px) { .desktop-cta { display: block; } }

/* Mobile Toggle */
.mobile-toggle {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  color: var(--charcoal-600);
  cursor: pointer;
  z-index: 51;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: white;
}
.mobile-nav.open { display: block; }

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1rem;
}

.mobile-nav-inner a {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal-700);
  padding: 0.75rem 0;
  transition: color 0.2s;
}
.mobile-nav-inner a:hover,
.mobile-nav-inner a.active { color: var(--orange-500); }

.mobile-nav-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  background: var(--orange-500);
  color: white;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
}

/* ===================== Hero Section ===================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-inner {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .hero-inner { padding-top: 5rem; padding-bottom: 4rem; }
}

.hero-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.hero-image-col { order: 2; }
.hero-text-col { order: 1; text-align: center; }
@media (min-width: 1024px) {
  .hero-image-col { order: 1; }
  .hero-text-col { order: 2; text-align: left; }
}

.hero-image-wrap {
  max-width: 24rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .hero-image-wrap { max-width: 32rem; } }
@media (min-width: 1024px) { .hero-image-wrap { margin: 0; } }

.hero-image-wrap img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
@media (min-width: 768px) {
  .hero-image-wrap img { border-radius: 1rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(242, 92, 5, 0.08);
  border: 1px solid rgba(242, 92, 5, 0.2);
  color: var(--orange-500);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .hero-badge { padding: 0.5rem 1rem; font-size: 0.75rem; margin-bottom: 1.5rem; }
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero-title { margin-bottom: 0.75rem; }
@media (min-width: 768px) { .hero-title { margin-bottom: 1.5rem; } }

.hero-title-line {
  display: block;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.875rem;
  line-height: 1.15;
  color: var(--charcoal-800);
}
.hero-title-line.orange { color: var(--orange-500); }

@media (min-width: 640px) { .hero-title-line { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-title-line { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-title-line { font-size: 4.5rem; } }

.hero-desc {
  font-size: 0.875rem;
  color: var(--charcoal-500);
  line-height: 1.625;
  max-width: 24rem;
  margin: 0 auto 1.25rem;
}
@media (min-width: 768px) {
  .hero-desc { font-size: 1rem; margin-bottom: 2rem; }
}
@media (min-width: 1024px) { .hero-desc { margin-left: 0; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; }
}
@media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.625rem;
  color: var(--charcoal-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-trust svg { width: 10px; height: 10px; fill: var(--orange-500); flex-shrink: 0; }

/* ===================== Dot Pattern Overlay ===================== */

.dots-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #F25C05 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.08;
  pointer-events: none;
}

/* ===================== Section ===================== */

.section {
  padding: 3rem 0;
}
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) { .section-header { margin-bottom: 4rem; } }

.section-eyebrow {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  color: var(--orange-500);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .section-eyebrow { font-size: 0.875rem; margin-bottom: 0.75rem; } }

.section-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.875rem;
  line-height: 1.15;
  color: var(--charcoal-800);
}
@media (min-width: 768px) {
  .section-title { font-size: 4.5rem; line-height: 1; }
}

/* ===================== Cards Grid ===================== */

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  background: var(--white);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
@media (min-width: 768px) { .card { padding: 2rem; } }

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
  border-color: rgba(242, 92, 5, 0.3);
}

.card-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}
@media (min-width: 768px) { .card-icon { width: 3rem; height: 3rem; margin-bottom: 1.25rem; } }

.card:hover .card-icon { transform: scale(1.1); }

.card-icon svg { width: 16px; height: 16px; }
@media (min-width: 768px) { .card-icon svg { width: 22px; height: 22px; } }

.card-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-800);
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .card-title { font-size: 1.5rem; margin-bottom: 0.75rem; } }

.card-desc {
  font-size: 0.75rem;
  color: var(--charcoal-500);
  line-height: 1.625;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .card-desc { font-size: 0.875rem; margin-bottom: 1rem; } }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.05em;
  color: var(--orange-500);
  font-weight: 700;
  transition: gap 0.2s;
}
@media (min-width: 768px) { .card-link { font-size: 0.875rem; } }

.card:hover .card-link { gap: 0.5rem; }

/* ===================== CTA Section ===================== */

.cta-section {
  position: relative;
  padding: 3.5rem 0;
  background: var(--orange-500);
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) { .cta-section { padding: 7rem 0; } }

.cta-section.dark {
  background: var(--charcoal-800);
}

.cta-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.875rem;
  line-height: 1.15;
  color: white;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .cta-title { font-size: 4.5rem; margin-bottom: 1rem; } }
@media (min-width: 1024px) { .cta-title { font-size: 5.625rem; } }

.cta-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  padding: 0 1rem;
}
@media (min-width: 768px) { .cta-desc { font-size: 1.125rem; margin-bottom: 2rem; } }

/* ===================== Footer ===================== */

.site-footer {
  background: var(--charcoal-800);
  color: white;
}

.footer-inner {
  padding: 2.5rem 0;
}
@media (min-width: 768px) { .footer-inner { padding: 4rem 0; } }

.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-flex { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand { text-align: center; }
@media (min-width: 768px) { .footer-brand { text-align: left; } }

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .footer-logo { justify-content: flex-start; } }

.footer-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: var(--orange-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.footer-logo-text {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-text {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 20rem;
  margin: 0 auto 1.25rem;
}
@media (min-width: 768px) { .footer-text { margin: 0 0 1.25rem; } }

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media (min-width: 768px) { .footer-contact { align-items: flex-start; } }

.footer-contact a,
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--orange-500); }

.footer-contact svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-column { text-align: center; }
@media (min-width: 768px) { .footer-column { text-align: left; } }

.footer-column h4 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media (min-width: 768px) { .footer-column ul { align-items: flex-start; } }

.footer-column a {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.2s;
}
.footer-column a:hover { color: var(--orange-500); }

.footer-social {
  display: flex;
  gap: 1rem;
}
@media (min-width: 768px) { .footer-social { flex-direction: column; gap: 0.625rem; } }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}
@media (min-width: 768px) { .footer-bottom { margin-top: 3rem; padding-top: 2rem; } }

/* ===================== Scroll Reveal ===================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===================== Animations ===================== */

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===================== Utilities ===================== */

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

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }

@media (min-width: 768px) {
  .md\\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
}

/* ===================== Hero Page (about, automation, software) ===================== */

.hero-page {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-page-inner {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) { .hero-page-inner { padding-top: 6rem; padding-bottom: 4rem; } }

.hero-page-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero-page-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-page-title { font-size: 4.5rem; line-height: 0.9; } }
@media (min-width: 1024px) { .hero-page-title { font-size: 5.625rem; } }

.hero-page-desc {
  font-size: 0.875rem;
  color: var(--charcoal-500);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.625;
}
@media (min-width: 768px) { .hero-page-desc { font-size: 1.125rem; margin-bottom: 2rem; } }

.hero-page-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) { .hero-page-buttons { flex-direction: row; justify-content: center; } }

/* ===================== About Hero (no image, text only) ===================== */

.about-hero-inner {
  text-align: left;
}
@media (min-width: 768px) { .about-hero-inner { padding-top: 6rem; } }

.about-hero-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .about-hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .about-hero-title { font-size: 4.5rem; line-height: 0.9; } }
@media (min-width: 1024px) { .about-hero-title { font-size: 5.625rem; } }

.about-hero-desc {
  font-size: 0.875rem;
  color: var(--charcoal-500);
  max-width: 36rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .about-hero-desc { font-size: 1.125rem; margin-bottom: 2rem; } }

/* ===================== Mission ===================== */

.mission-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .mission-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (min-width: 768px) { .mission-item { gap: 1rem; } }

.mission-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
@media (min-width: 768px) { .mission-icon { width: 48px; height: 48px; } }

.mission-icon svg { width: 18px; height: 18px; }

.mission-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-800);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .mission-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
}

.mission-desc {
  font-size: 0.75rem;
  color: var(--charcoal-500);
  line-height: 1.625;
}
@media (min-width: 768px) { .mission-desc { font-size: 0.875rem; } }

/* ===================== Grid 2 (benefits) ===================== */

.grid-2-sm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .grid-2-sm { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-2-sm { grid-template-columns: 1fr 1fr 1fr 1fr; } }

/* ===================== Solutions ===================== */

.solutions-list { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .solutions-list { gap: 1.25rem; } }

.solution-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: white;
  border: 2px solid #e5e7eb;
}
@media (min-width: 768px) { .solution-card { padding: 2.5rem; } }

.solution-flex {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) { .solution-flex { flex-direction: row; gap: 2rem; } }

.solution-main { flex: 1; }

.solution-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .solution-icon { width: 48px; height: 48px; margin-bottom: 1rem; } }

.solution-icon svg { width: 18px; height: 18px; }

.solution-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-800);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .solution-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
}

.solution-desc {
  font-size: 0.75rem;
  color: var(--charcoal-500);
  line-height: 1.625;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .solution-desc { font-size: 0.875rem; margin-bottom: 1rem; } }

.solution-features {
  padding-top: 1rem;
  border-top: 2px solid #e5e7eb;
}
@media (min-width: 768px) {
  .solution-features {
    padding-top: 0;
    padding-left: 2rem;
    border-top: none;
    border-left: 2px solid #e5e7eb;
    min-width: 200px;
  }
}

.solution-features-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
@media (min-width: 768px) { .solution-features-title { font-size: 0.75rem; margin-bottom: 1rem; } }

.feature-list { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 768px) { .feature-list { gap: 0.75rem; } }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--charcoal-600);
}
@media (min-width: 768px) { .feature-item { font-size: 0.875rem; } }

.feature-check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--orange-500);
}

/* ===================== Process ===================== */

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; } }

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

.process-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(242, 92, 5, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
@media (min-width: 768px) { .process-circle { width: 64px; height: 64px; margin-bottom: 1.5rem; } }

.process-step {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.125rem;
  color: var(--orange-500);
}
@media (min-width: 768px) { .process-step { font-size: 1.5rem; } }

.process-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-800);
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .process-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
}

.process-desc {
  font-size: 0.75rem;
  color: var(--charcoal-500);
  line-height: 1.625;
  max-width: 140px;
  margin: 0 auto;
}
@media (min-width: 768px) { .process-desc { font-size: 0.875rem; max-width: 20rem; } }

/* ===================== Approach ===================== */

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .approach-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1024px) { .approach-grid { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: 1.25rem; } }

.approach-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: white;
  border: 2px solid #e5e7eb;
  text-align: center;
}
@media (min-width: 768px) { .approach-card { padding: 1.5rem; } }

.approach-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(242, 92, 5, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  color: var(--orange-500);
}
@media (min-width: 768px) { .approach-icon { width: 48px; height: 48px; margin-bottom: 1rem; } }

.approach-icon svg { width: 16px; height: 16px; }

.approach-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-800);
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .approach-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
}

.approach-desc {
  font-size: 0.625rem;
  color: var(--charcoal-500);
  line-height: 1.5;
}
@media (min-width: 768px) { .approach-desc { font-size: 0.75rem; } }

/* ===================== Tech Stack Pills ===================== */

.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 768px) { .pill-wrap { gap: 0.75rem; } }

.pill {
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  background: var(--white);
  border: 2px solid #e5e7eb;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-600);
}
@media (min-width: 768px) { .pill { padding: 0.75rem 1.25rem; font-size: 0.875rem; } }

/* ===================== Values Grid ===================== */

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 1.25rem; } }

.value-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: white;
  border: 2px solid #e5e7eb;
}
@media (min-width: 768px) { .value-card { padding: 2rem; } }

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: rgba(242, 92, 5, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .value-icon { width: 48px; height: 48px; margin-bottom: 1.25rem; } }

.value-icon svg { width: 18px; height: 18px; }

.value-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-800);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .value-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
}

.value-desc {
  font-size: 0.75rem;
  color: var(--charcoal-500);
  line-height: 1.625;
}
@media (min-width: 768px) { .value-desc { font-size: 0.875rem; } }

/* ===================== Contact Form ===================== */

.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 3fr 2fr; gap: 4rem; }
}

.form-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: white;
  border: 2px solid #e5e7eb;
}
@media (min-width: 768px) { .form-card { padding: 2rem; } }

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

.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; }

.form-label {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal-600);
  margin-bottom: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  border: 2px solid #e5e7eb;
  background: white;
  font-size: 0.75rem;
  color: var(--charcoal-800);
  font-family: "Montserrat", sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange-500);
}

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

/* ===================== Contact Info ===================== */

.contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .contact-info { gap: 1rem; } }

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: white;
  border: 2px solid #e5e7eb;
}
@media (min-width: 768px) { .contact-info-card { padding: 1.25rem; gap: 1rem; } }

.contact-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  background: rgba(242, 92, 5, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  flex-shrink: 0;
}
@media (min-width: 768px) { .contact-info-icon { width: 40px; height: 40px; } }

.contact-info-icon svg { width: 14px; height: 14px; }

.contact-info-label {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9ca3af;
}

.contact-info-value {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 0.75rem;
  color: var(--charcoal-800);
}
@media (min-width: 768px) { .contact-info-value { font-size: 0.875rem; } }

.contact-cta {
  padding: 1.25rem;
  border-radius: 0.5rem;
  background: var(--orange-500);
  color: white;
}
@media (min-width: 768px) { .contact-cta { padding: 1.5rem; } }

.contact-cta-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .contact-cta-title { font-size: 1.5rem; margin-bottom: 0.5rem; } }

.contact-cta-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .contact-cta-desc { font-size: 0.875rem; margin-bottom: 1rem; } }

.contact-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.2);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  color: white;
  transition: background 0.2s;
}
@media (min-width: 768px) { .contact-cta-phone { padding: 0.5rem 1rem; font-size: 0.875rem; } }

.contact-cta-phone:hover { background: rgba(255,255,255,0.3); }

.contact-cta-phone svg { width: 12px; height: 12px; }

/* ===================== Thank You State ===================== */

.thank-you {
  text-align: center;
  padding: 3rem 0;
}

.thank-you-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(242, 92, 5, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--orange-500);
}
@media (min-width: 768px) { .thank-you-icon { width: 64px; height: 64px; margin-bottom: 1.5rem; } }

.thank-you-icon svg { width: 24px; height: 24px; }

.thank-you-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.5rem;
  color: var(--charcoal-800);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .thank-you-title { font-size: 1.875rem; margin-bottom: 0.75rem; } }

.thank-you-desc {
  font-size: 0.75rem;
  color: var(--charcoal-500);
  max-width: 28rem;
  margin: 0 auto 1rem;
}
@media (min-width: 768px) { .thank-you-desc { font-size: 0.875rem; margin-bottom: 1.5rem; } }

.thank-you-btn {
  background: none;
  border: none;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--orange-500);
  cursor: pointer;
}
.thank-you-btn:hover { text-decoration: underline; }

/* ===================== Page Orange Circle Decoration ===================== */

.orange-circle-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(242,92,5,0.12) 0%, rgba(242,92,5,0.04) 50%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .orange-circle-bg { width: 700px; height: 700px; }
}

/* ===================== Active page link ===================== */

a.active-link { color: var(--orange-500) !important; }
a.active-link::after { width: 100% !important; }

