/* ═══════════════════════════════════════════════════════════
   WAY2WEBWORLD — Premium Design System CSS
   ═══════════════════════════════════════════════════════════ */

/* ═══════ RESET & BASE ═══════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-weight: 800;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

::selection {
  background: #E94724;
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* ═══════ CONTAINER ═══════ */
.container-xl {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container-xl {
    padding: 0 48px;
  }
}

/* ═══════ GRADIENT TEXT ═══════ */
.text-gradient {
  background: linear-gradient(135deg, #E94724, #ff6b4a, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════ ANIMATED GRADIENT BG ═══════ */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.animated-gradient {
  background: linear-gradient(-45deg, #ffffff, #f8fafc, #f1f5f9, #ffffff);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

/* ═══════ FLOATING ANIMATION ═══════ */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
  animation: float 6s ease-in-out 2s infinite;
}

.animate-float-slow {
  animation: float 8s ease-in-out 1s infinite;
}

/* ═══════ PULSE GLOW ═══════ */
@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.animate-pulse-glow {
  animation: pulseGlow 4s ease-in-out infinite;
}

/* ═══════ MARQUEE ═══════ */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

/* ═══════ SCROLL BOUNCE ═══════ */
@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ═══════ FADE IN ANIMATION (scroll-triggered via JS) ═══════ */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════ GLASS MORPHISM ═══════ */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.glass-white {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* ═══════ GLOW EFFECTS ═══════ */
.glow-primary {
  box-shadow: 0 0 80px 20px rgba(233, 71, 36, 0.15);
}

.glow-soft {
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.12);
}

/* ═══════ CARD STYLES ═══════ */
.card-elevated {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #f0f0f2;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-elevated:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.card-dark {
  background: #f8fafc;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-dark:hover {
  border-color: rgba(233, 71, 36, 0.3);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.08);
}

/* ═══════ IMAGE ZOOM ═══════ */
.img-zoom {
  overflow: hidden;
  border-radius: 20px;
}

.img-zoom img {
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.img-zoom:hover img {
  transform: scale(1.06);
}

/* ═══════ NOISE TEXTURE ═══════ */
.noise {
  position: relative;
}

.noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ═══════ DIVIDER ═══════ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8e8ed, transparent);
}

/* ═══════ BUTTONS ═══════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #E94724;
  color: #fff;
  padding: 16px 40px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(233, 71, 36, 0.3);
}

.btn-primary:hover {
  background: #cf3b1a;
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -12px rgba(233, 71, 36, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  padding: 16px 24px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  color: #111827;
  background: rgba(0, 0, 0, 0.04);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #cbd5e1;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  color: #111827;
  border-color: #94a3b8;
  background: #f8fafc;
}

/* ═══════ SECTION BADGE ═══════ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 71, 36, 0.05);
  color: #E94724;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-badge-dark {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #111827;
}

/* ═══════ NAVBAR ═══════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  height: 76px;
}

.navbar.transparent {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #f0f0f2;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

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

.navbar-logo img {
  height: 36px;
  width: auto;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.navbar-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #E94724 !important;
}

.navbar-cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: #E94724;
  color: #fff;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(233, 71, 36, 0.25);
  transition: all 0.3s;
}

.navbar-cta:hover {
  box-shadow: 0 8px 25px rgba(233, 71, 36, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 60;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }

  .navbar-cta {
    display: inline-flex;
  }

  .mobile-toggle {
    display: none;
  }
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 76px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #f0f0f2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
}

.mega-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mega-menu-item {
  padding: 20px;
  border-radius: 16px;
  transition: background 0.3s;
}

.mega-menu-item:hover {
  background: #f7f7f8;
}

.mega-menu-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 4px;
  letter-spacing: 0;
  line-height: 1.5;
  transition: color 0.3s;
}

.mega-menu-item:hover h4 {
  color: #E94724;
}

.mega-menu-item p {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

.mega-menu-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu-footer p {
  font-size: 12px;
  color: #888;
}

.mega-menu-footer a {
  font-size: 12px;
  font-weight: 600;
  color: #E94724;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mega-menu-footer a:hover {
  text-decoration: underline;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 96px 32px 32px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 20px 0;
  font-size: 28px;
  font-weight: 700;
  color: #0a0a0a;
  border-bottom: 1px solid #f0f0f2;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.mobile-menu a.active {
  color: #E94724;
}

.mobile-menu-cta {
  margin-top: 48px;
  display: block;
  text-align: center;
  background: #E94724;
  color: #fff;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 18px;
  font-weight: 600;
}

.mobile-menu-contact {
  margin-top: 40px;
  color: #888;
  font-size: 14px;
  line-height: 2.2;
}

/* ═══════ FOOTER ═══════ */
.footer {
  background: #f8fafc;
  color: #4b5563;
  padding: 80px 0 32px;
  border-top: 1px solid #f0f0f2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 64px;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand img {
  height: 36px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-contact-item:hover {
  color: #E94724;
}

.footer-contact-item svg {
  flex-shrink: 0;
}

.footer-col h4 {
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #E94724;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E94724;
  color: #fff;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(233, 71, 36, 0.3);
  transition: all 0.3s;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 12px;
}

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.back-to-top:hover {
  background: #E94724;
  border-color: #E94724;
  color: #fff;
  transform: scale(1.1);
}

/* ═══════ HERO SECTION ═══════ */
.hero {
  position: relative;
  height: 100vh;
  max-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  top: 10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: rgba(233, 71, 36, 0.1);
  filter: blur(120px);
}

.hero-orb-2 {
  bottom: 15%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(74, 97, 173, 0.1);
  filter: blur(100px);
}

.hero-orb-3 {
  top: 40%;
  right: 30%;
  width: 300px;
  height: 300px;
  background: rgba(255, 138, 101, 0.08);
  filter: blur(80px);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 80px 0 60px;
  /* Reduced padding to fit screen */
}

.hero-split-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 10;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-split-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
  }
}

.hero-text-content {
  flex: 1;
  max-width: 650px;
}

.hero-visual-content {
  flex: 1;
  width: 100%;
  position: relative;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.hero-image-grid img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-1 {
  aspect-ratio: 4/5;
  transform: translateY(40px);
}

.hero-img-2 {
  aspect-ratio: 1/1;
}

.hero-image-grid:hover .hero-img-1 {
  transform: translateY(30px);
}

.hero-image-grid:hover .hero-img-2 {
  transform: translateY(-10px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 10px 20px;
  border-radius: 9999px;
}

.hero-badge svg {
  color: #E94724;
}

.hero-badge span {
  color: #4b5563;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  color: #111827;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: #4b5563;
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hero-floating-cards {
  display: none;
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1280px) {
  .hero-floating-cards {
    display: block;
  }
}

.hero-float-card {
  width: 256px;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.hero-float-card:nth-child(2) {
  margin-left: 32px;
}

.hero-float-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-card-title {
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
}

.hero-float-card-sub {
  color: #4b5563;
  font-size: 12px;
}

.hero-float-card-bar {
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 9999px;
  overflow: hidden;
}

.hero-float-card-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #E94724, #ff8a65);
  border-radius: 9999px;
  transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s infinite;
}

.hero-scroll-indicator span {
  color: #4b5563;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-indicator-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, #cbd5e1, transparent);
}

/* ═══════ STATS SECTION ═══════ */
.stats-section {
  position: relative;
  padding: 96px 0 128px;
  background: #ffffff;
  overflow: hidden;
}

.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(233, 71, 36, 0.05), transparent, rgba(74, 97, 173, 0.05));
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

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

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 72px;
  }
}

.stat-label {
  color: #4b5563;
  font-size: 14px;
  margin-top: 12px;
  font-weight: 500;
}

/* ═══════ SERVICES SECTION ═══════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: block;
  padding: 32px 40px;
  height: 100%;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s;
}

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

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.3;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: #E94724;
}

.service-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  transition: all 0.3s;
}

.service-card:hover .service-card-link {
  color: #E94724;
  gap: 12px;
}

.services-banner {
  display: block;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a0a;
  margin-top: 40px;
}

.services-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(233, 71, 36, 0.15), transparent, rgba(74, 97, 173, 0.15));
}

.services-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 32px;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-banner-inner {
    flex-direction: row;
    padding: 56px;
  }
}

.services-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-banner-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #E94724, #ff8a65);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(233, 71, 36, 0.2);
}

.services-banner h3 {
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .services-banner h3 {
    font-size: 30px;
  }
}

.services-banner p {
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  font-size: 14px;
}

.services-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0a0a0a;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.5s;
  white-space: nowrap;
}

.services-banner:hover .services-banner-btn {
  background: #E94724;
  color: #fff;
}

/* ═══════ ABOUT TEASER ═══════ */
.about-teaser-img-wrap {
  position: relative;
}

.about-teaser-img-border {
  position: absolute;
  z-index: -1;
  top: -24px;
  left: -24px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 2px solid rgba(233, 71, 36, 0.15);
}

.about-teaser-float-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  padding: 24px;
  border-radius: 16px;
}

@media (min-width: 1024px) {
  .about-teaser-float-badge {
    right: -40px;
  }
}

.about-teaser-float-badge .num {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-teaser-float-badge .label {
  color: #888;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}

.about-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.about-tag {
  padding: 8px 16px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e8e8ed;
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E94724;
  font-size: 15px;
  font-weight: 600;
  transition: gap 0.3s;
}

.about-link:hover {
  gap: 12px;
}

/* ═══════ MARQUEE ═══════ */
.marquee-section {
  padding: 64px 0;
  background: #fff;
  border-top: 1px solid #f0f0f2;
  border-bottom: 1px solid #f0f0f2;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  color: #888;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
}

.marquee-item {
  margin: 0 40px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  color: #e8e8ed;
  cursor: default;
  user-select: none;
  transition: color 0.5s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 1024px) {
  .marquee-item {
    margin: 0 64px;
    font-size: 30px;
  }
}

.marquee-item:hover {
  color: rgba(233, 71, 36, 0.3);
}

/* ═══════ FEATURED WORK ═══════ */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card a {
  display: block;
}

.work-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #E94724;
  background: rgba(233, 71, 36, 0.1);
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 12px;
}

.work-card-client {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.work-card h3 {
  font-size: 20px;
  color: #fff;
  margin-top: 12px;
  letter-spacing: 0;
  line-height: 1.3;
  transition: color 0.3s;
}

.work-card a:hover h3 {
  color: #E94724;
}

/* ═══════ INDUSTRIES ═══════ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-card {
  display: block;
  padding: 32px;
  text-align: center;
}

.industry-card:hover {
  border-color: rgba(233, 71, 36, 0.2);
}

.industry-card-emoji {
  font-size: 36px;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 0;
  line-height: 1.4;
  transition: color 0.3s;
}

.industry-card:hover h3 {
  color: #E94724;
}

/* ═══════ TESTIMONIALS ═══════ */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}

.testimonial-stars svg {
  color: #f59e0b;
  fill: #f59e0b;
  width: 18px;
  height: 18px;
}

.testimonial-quote {
  font-size: 24px;
  color: #0a0a0a;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .testimonial-quote {
    font-size: 38px;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
}

.testimonial-role {
  font-size: 14px;
  color: #888;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 64px;
}

.testimonial-dot {
  height: 4px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  padding: 0;
}

.testimonial-dot.active {
  width: 48px;
  background: #E94724;
}

.testimonial-dot:not(.active) {
  width: 20px;
  background: #ddd;
}

.testimonial-dot:not(.active):hover {
  background: #bbb;
}

/* ═══════ CTA SECTION ═══════ */
.cta-section {
  position: relative;
  padding: 128px 0 176px;
  overflow: hidden;
  text-align: center;
  background: #0f172a;
  /* Deep dark background */
}

.cta-section .cta-glow-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: rgba(233, 71, 36, 0.08);
  border-radius: 50%;
  filter: blur(180px);
  pointer-events: none;
}

.cta-section .cta-glow-2 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 300px;
  height: 300px;
  background: rgba(74, 97, 173, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 36px;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .cta-section h2 {
    font-size: 72px;
  }
}

.cta-section p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ═══════ INNER PAGE HERO ═══════ */
.page-hero {
  position: relative;
  padding: 144px 0 96px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 192px 0 128px;
  }
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .hero-badge {
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: 36px;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 900px;
}

@media (min-width: 640px) {
  .page-hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 76px;
  }
}

.page-hero p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-top: 32px;
  max-width: 640px;
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════ TWO COLUMN LAYOUT ═══════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 96px;
  }
}

.two-col-reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col-reverse {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}

/* ═══════ VALUE CARDS ═══════ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  padding: 40px 48px;
  height: 100%;
}

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(233, 71, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-card-icon svg {
  color: #E94724;
}

.value-card h3 {
  font-size: 24px;
  color: #0a0a0a;
  margin-bottom: 16px;
  letter-spacing: 0;
  line-height: 1.3;
}

.value-card p {
  color: #555;
  line-height: 1.7;
}

/* ═══════ TEAM GRID ═══════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

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

.team-card-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 1;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-card h4 {
  font-size: 18px;
  color: #0a0a0a;
  letter-spacing: 0;
  line-height: 1.4;
}

.team-card p {
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

/* ═══════ SERVICES DETAIL ═══════ */
.service-detail-section {
  padding: 96px 0 128px;
}

@media (min-width: 1024px) {
  .service-detail-section {
    padding: 128px 0;
  }
}

.service-detail-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(233, 71, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-detail-icon svg {
  color: #E94724;
}

.service-detail-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.service-detail-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.service-detail-feature svg {
  color: #E94724;
  flex-shrink: 0;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E94724;
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.3s;
}

.service-detail-link:hover {
  gap: 12px;
}

/* ═══════ INDUSTRIES PAGE GRID ═══════ */
.industries-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .industries-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-page-card {
  overflow: hidden;
}

.industry-page-card-img {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.industry-page-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-page-card:hover .industry-page-card-img img {
  transform: scale(1.06);
}

.industry-page-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.industry-page-card-body {
  padding: 32px 40px;
}

.industry-page-card h3 {
  font-size: 24px;
  color: #0a0a0a;
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.3;
  transition: color 0.3s;
}

.industry-page-card:hover h3 {
  color: #E94724;
}

.industry-page-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.industry-page-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E94724;
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.3s;
}

.industry-page-card-link:hover {
  gap: 12px;
}

/* ═══════ PORTFOLIO FILTER ═══════ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 64px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
}

.filter-tab.active {
  background: #0a0a0a;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-tab:not(.active) {
  background: #f7f7f8;
  color: #555;
  border-color: #e8e8ed;
}

.filter-tab:not(.active):hover {
  color: #0a0a0a;
  border-color: #ccc;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card {
  overflow: hidden;
  transition: opacity 0.4s, transform 0.4s;
}

.portfolio-card.large {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .portfolio-card.large {
    grid-column: span 2;
  }
}

.portfolio-card.large .portfolio-card-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .portfolio-card.large .portfolio-card-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card-inner {
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.portfolio-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio-card.large .portfolio-card-img {
  min-height: 300px;
  aspect-ratio: auto;
}

@media (min-width: 1024px) {
  .portfolio-card.large .portfolio-card-img {
    min-height: 0;
    aspect-ratio: auto;
  }
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.05);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s;
}

.portfolio-card:hover .portfolio-card-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.portfolio-card-overlay-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s;
}

.portfolio-card:hover .portfolio-card-overlay-icon {
  opacity: 1;
}

.portfolio-card-overlay-icon svg {
  color: #fff;
  width: 20px;
  height: 20px;
}

.portfolio-card-body {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-card-client {
  color: #E94724;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.portfolio-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.3;
  transition: color 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.portfolio-card:hover .portfolio-card-title {
  color: #E94724;
}

.portfolio-card-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.portfolio-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-card-tag {
  font-size: 12px;
  font-weight: 500;
  color: #888;
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid #e8e8ed;
  background: #fff;
}

/* ═══════ CONTACT PAGE ═══════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

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

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f7f7f8;
  border: 1px solid #e8e8ed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  color: #E94724;
}

.contact-info-item h4 {
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0;
  line-height: 1.5;
}

.contact-info-item p {
  color: #888;
  font-size: 14px;
}

.contact-map-link {
  display: block;
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e8ed;
  transition: box-shadow 0.3s;
}

.contact-map-link:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-map-link img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  background: #f7f7f8;
}

.contact-map-footer {
  padding: 16px;
  background: #f7f7f8;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
}

.contact-map-footer svg {
  color: #E94724;
}

.contact-form-wrap {
  border-radius: 24px;
  background: #f7f7f8;
  border: 1px solid #e8e8ed;
  padding: 32px;
}

@media (min-width: 768px) {
  .contact-form-wrap {
    padding: 48px;
  }
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 0;
}

.form-group.full {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group label .req {
  color: #E94724;
}

.form-input {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  color: #0a0a0a;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  border: 1px solid #e8e8ed;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #E94724;
}

.form-input::placeholder {
  color: #bbb;
}

textarea.form-input {
  resize: none;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E94724;
  color: #fff;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(233, 71, 36, 0.3);
  transition: all 0.3s;
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .contact-submit {
    width: auto;
  }
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: #cf3b1a;
}

.form-note {
  color: #888;
  font-size: 12px;
  margin-top: 16px;
}

.contact-quick-cta {
  padding: 80px 0;
  background: #f7f7f8;
  border-top: 1px solid #e8e8ed;
  text-align: center;
}

.contact-quick-cta p {
  color: #555;
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-quick-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .contact-quick-cta-row {
    flex-direction: row;
    justify-content: center;
  }
}

.contact-quick-cta-phone {
  color: #0a0a0a;
  font-weight: 700;
  font-size: 24px;
  transition: color 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 768px) {
  .contact-quick-cta-phone {
    font-size: 30px;
  }
}

.contact-quick-cta-phone:hover {
  color: #E94724;
}

.contact-quick-cta-sep {
  display: none;
  color: #e8e8ed;
}

@media (min-width: 640px) {
  .contact-quick-cta-sep {
    display: block;
  }
}

.contact-quick-cta-skype {
  color: #E94724;
  font-weight: 600;
}

.contact-quick-cta-skype:hover {
  text-decoration: underline;
}

/* ═══════ UTILITY ═══════ */
.text-center {
  text-align: center;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-10 {
  margin-bottom: 40px;
}

.mb-14 {
  margin-bottom: 56px;
}

.mb-16 {
  margin-bottom: 64px;
}

.mb-20 {
  margin-bottom: 80px;
}

.mt-10 {
  margin-top: 40px;
}

.py-section {
  padding: 112px 0 128px;
}

@media (min-width: 1024px) {
  .py-section {
    padding: 128px 0 160px;
  }
}

.bg-white {
  background: #fff;
}

.bg-surface {
  background: #f7f7f8;
}

.bg-dark {
  background: #0a0a0a;
}

.section-heading {
  font-size: 36px;
  color: #0a0a0a;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .section-heading {
    font-size: 58px;
  }
}

.section-heading-white {
  color: #fff;
}

.section-heading-lg {
  font-size: 36px;
  color: #0a0a0a;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

@media (min-width: 768px) {
  .section-heading-lg {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .section-heading-lg {
    font-size: 64px;
  }
}

.text-subtitle {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}

.text-body {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.text-muted {
  color: #888;
  line-height: 1.7;
}

.max-w-2xl {
  max-width: 640px;
}

.max-w-4xl {
  max-width: 900px;
}

/* Stats row for About page */
.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.stats-mini-item .num {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-mini-item .label {
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

/* ═══════ CASE STUDY SECTION ═══════ */
.case-study-section {
  padding: 96px 0 128px;
}

@media (min-width: 1024px) {
  .case-study-section {
    padding: 128px 0;
  }
}

.case-study-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.case-study-badge {
  display: inline-block;
  background: rgba(233, 71, 36, 0.08);
  color: #E94724;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.case-study-title {
  font-size: 30px;
  color: #0a0a0a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .case-study-title {
    font-size: 36px;
  }
}

.case-study-result {
  background: #f7f7f8;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #e8e8ed;
}

.case-study-result h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
  letter-spacing: 0;
  line-height: 1.5;
}

.case-study-result p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════ SOLUTIONS PAGE GRID ═══════ */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution-card {
  overflow: hidden;
}

.solution-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.solution-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.solution-card:hover .solution-card-img img {
  transform: scale(1.06);
}

.solution-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.solution-card-body {
  padding: 32px 40px;
}

.solution-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(233, 71, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-card-icon svg {
  color: #E94724;
}

.solution-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.3;
  transition: color 0.3s;
}

.solution-card:hover h3 {
  color: #E94724;
}

.solution-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Hidden utility */
.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Success message */
.success-msg {
  padding: 16px;
  border-radius: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  display: none;
}

.success-msg.show {
  display: block;
}