/* ════════════════════════════════════════
   GLOBAL RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip; /* 'clip' use karo, 'hidden' nahi — fixed elements ko bhi rok ta hai */
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--g7);
  background: #fff;
  overflow-x: clip;
  max-width: 100%;
  font-size: var(--base-font);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--nvd);
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--or); border-radius: 3px; }

/* ════════════════════════════════════════
   CSS VARIABLES
════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --or: #F77F00;
  --orl: #FF9B2A;
  --ord: #D96B00;
  --nv: #003285;
  --nvl: #0044B3;
  --nvd: #001F52;
  --off: #F8F9FB;
  --g1: #F3F4F6;
  --g2: #E5E7EB;
  --g5: #6B7280;
  --g7: #374151;
  --tr: .3s ease;

  /* Header */
  --header-height: 70px;
  --header-text: #1a1a2e;
  --accent-color: #f99a1e;
  --accent-hover: #e08010;
  --primary-color: #001F52;
  --text-dark: #1a1a2e;
  --border-color: #e5e7eb;
  --mega-menu-bg: #ffffff;
  --transition-speed: 0.28s;

  /* Layout */
  --container-max: 1320px;
  --base-font: 1rem;
  --scale: 1;
}

/* Bootstrap container override */
@media (min-width: 1400px) { .container { max-width: var(--container-max); } }
@media (min-width: 1920px) { :root { --container-max: 1640px; --base-font: 1.15rem; --scale: 1.15; } }
@media (min-width: 2560px) { :root { --container-max: 2200px; --base-font: 1.4rem; --scale: 1.4; } }
@media (min-width: 3200px) { :root { --container-max: 2800px; --base-font: 1.65rem; --scale: 1.65; } }

/* ════════════════════════════════════════
   SKIP LINK
════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.bp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--or);
  color: #fff;
  border: 2px solid var(--or);
  font-weight: 600;
  border-radius: 7px;
  padding: 12px 28px;
  transition: var(--tr);
  font-size: .93em;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
}
.bp:hover {
  background: var(--ord);
  border-color: var(--ord);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,127,0,.32);
}

.bo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--nv);
  border: 2px solid var(--nv);
  font-weight: 600;
  border-radius: 7px;
  padding: 12px 28px;
  transition: var(--tr);
  font-size: .93em;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
}
.bo:hover { background: var(--nv); color: #fff; transform: translateY(-2px); }

.bw {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.88);
  border: 2px solid rgba(255,255,255,.35);
  font-weight: 600;
  border-radius: 7px;
  padding: 12px 28px;
  transition: var(--tr);
  font-size: .93em;
  cursor: pointer;
}
.bw:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }

/* ════════════════════════════════════════
   SECTION HELPERS
════════════════════════════════════════ */
.slb {
  font-size: .73em;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 9px;
}
.stt { font-size: clamp(1.6rem, 2.5vw, 2.6rem); line-height: 1.22; margin-bottom: 13px; }
.ssb { font-size: 1em; color: var(--g5); line-height: 1.72; }
.dv { width: 42px; height: 3px; background: var(--or); border-radius: 2px; margin: 14px 0 8px; }
.dv.mc { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
#btt {
  position: fixed;
  bottom: 26px;
  right: 22px;
  width: 44px;
  height: 44px;
  background: var(--or);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  transition: var(--tr);
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(247,127,0,.45);
}
#btt.show { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
header {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  height: var(--header-height);
  z-index: 1000;
  /* contain hatao — mobile pe fixed elements ke saath conflict karta hai */
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Logo */
.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 900;
  background: linear-gradient(135deg, #f99a1e, #f99a1e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
  outline: none;
  transition: opacity .2s;
}
.logo:hover { opacity: .85; }
.logo img { height: 44px; width: auto; display: block; }
.logo i { font-size: 1.6rem; color: #f99a1e; }

/* Navigation */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  align-items: center;
  height: var(--header-height);
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

nav ul li > a {
  color: var(--header-text);
  text-decoration: none;
  font-size: clamp(0.82rem, 1.4vw, 0.96rem);
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-speed);
  white-space: nowrap;
  outline: none;
  position: relative;
}

nav ul li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-speed);
  border-radius: 2px;
}

nav ul li > a:hover,
nav ul li > a:focus,
nav ul li > a.active { color: var(--accent-color); }

nav ul li > a:hover::after,
nav ul li > a:focus::after,
nav ul li > a.active::after { transform: scaleX(1); }

nav ul li > a i {
  font-size: 0.65rem;
  transition: transform var(--transition-speed);
}
nav ul li:hover > a i { transform: rotate(180deg); }

/* CTA Button */
.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: #fff !important;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  transition: all var(--transition-speed);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
}
.cta-button:hover,
.cta-button:focus {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(249,154,30,0.4);
  color: #fff !important;
}
.cta-button i { font-size: .8rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--header-text);
  border-radius: 2px;
  transition: all var(--transition-speed);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ════════════════════════════════════════
   MEGA MENU
════════════════════════════════════════ */
.mega-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: 100%; /* 100vw nahi — real mobile pe overflow karta hai */
  background: var(--mega-menu-bg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed) ease,
              visibility var(--transition-speed) ease,
              transform var(--transition-speed) ease;
  transform: translateY(10px);
  overflow: hidden;
  max-height: 80vh;
  overflow-y: auto;
  border-top: 3px solid var(--accent-color);
}

nav ul li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
}

/* Mega Sidebar */
.mega-sidebar {
  width: 260px;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  border-right: 1px solid var(--border-color);
  padding: 1.25rem 0;
  flex-shrink: 0;
}

.mega-sidebar-item {
  width: calc(100% - 1.4rem);
  padding: 0.65rem 1rem;
  margin: 0.2rem 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  font-family: 'Work Sans', sans-serif;
  transition: all var(--transition-speed);
  border-radius: 8px;
  position: relative;
  border: none;
  background: none;
  text-align: left;
}

.mega-sidebar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--accent-color);
  border-radius: 0 3px 3px 0;
  transition: height var(--transition-speed);
}

.mega-sidebar-item i {
  font-size: 1.4rem;
  width: 28px;
  flex-shrink: 0;
  transition: transform var(--transition-speed);
}

.mega-sidebar-item:hover {
  background: rgba(249,154,30,.08);
  transform: translateX(6px);
}
.mega-sidebar-item:hover::before { height: 60%; }
.mega-sidebar-item:hover i { transform: scale(1.1); }

.mega-sidebar-item.active {
  background: linear-gradient(90deg, rgba(249,154,30,.15) 0%, rgba(249,154,30,.05) 100%);
  color: var(--accent-hover);
  transform: translateX(6px);
  box-shadow: 0 3px 10px rgba(249,154,30,.12);
}
.mega-sidebar-item.active::before { height: 70%; }

/* Mega Content */
.mega-content {
  flex: 1;
  padding: 1.5rem 2rem;
  background: var(--mega-menu-bg);
}

.content-section {
  display: none;
  animation: fadeIn .35s ease;
}
.content-section.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-section h3 {
  color: var(--primary-color);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
}
.content-section h3 i {
  color: var(--accent-color);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed);
  cursor: pointer;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249,154,30,.18);
  border-color: var(--accent-color);
  background: #fff;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(249,154,30,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
  transition: all var(--transition-speed);
}
.service-card:hover .service-icon {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(249,154,30,.3);
  transform: scale(1.08);
}
.service-card:hover .service-icon i { color: #fff !important; }

.service-card h4 {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Work Sans', sans-serif;
}

/* Devicon colors */
.devicon-react-original    { color: #f99a1e; }
.devicon-nodejs-plain      { color: #f99a1e; }
.devicon-wordpress-plain   { color: #f99a1e; }
.devicon-android-plain     { color: #3DDC84; }
.devicon-apple-original    { color: #000; }
.devicon-flutter-plain     { color: #f99a1e; }
.devicon-postgresql-plain  { color: #f99a1e; }
.devicon-docker-plain      { color: #f99a1e; }
.devicon-figma-plain       { color: #f99a1e; }
.devicon-amazonwebservices-plain-wordmark { color: #f99a1e; }
.devicon-azure-plain       { color: #f99a1e; }
.devicon-googlecloud-plain { color: #4285F4; }
.devicon-tensorflow-original { color: #f99a1e; }
.devicon-python-plain      { color: #f99a1e; }
.devicon-html5-plain       { color: #E34F26; }
.devicon-vscode-plain      { color: #007ACC; }

/* ════════════════════════════════════════
   MOBILE MENU
════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: 100%; /* 100vw nahi */
  background: #fff;
  z-index: 999;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  width: 100%;
}

.mobile-nav li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  font-family: 'Work Sans', sans-serif;
  border-bottom: 1px solid var(--border-color);
  transition: all .2s;
}
.mobile-nav li > a:hover,
.mobile-nav li > a:focus {
  color: var(--accent-color);
  background: rgba(249,154,30,.05);
  padding-left: 2rem;
}

.mobile-nav li > a i {
  font-size: 0.65rem;
  transition: transform .25s;
}

.mobile-submenu {
  display: none;
  background: var(--off);
  border-bottom: 1px solid var(--border-color);
}
.mobile-submenu.active { display: block; }

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 2rem;
  color: var(--g5);
  text-decoration: none;
  font-size: 0.88rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  border-bottom: 1px solid var(--g2);
  transition: all .2s;
}
.mobile-submenu a:last-child { border-bottom: none; }
.mobile-submenu a:hover {
  color: var(--accent-color);
  padding-left: 2.5rem;
  background: rgba(249,154,30,.06);
}
.mobile-submenu a i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
#hero {
  background: var(--nvd);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}

.hgrd {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 52px 52px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 80% 50%, rgba(247,127,0,.1) 0%, transparent 70%),
              radial-gradient(ellipse 45% 55% at 5% 88%, rgba(0,50,133,.5) 0%, transparent 65%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.ob1 { width: 300px; height: 300px; background: rgba(247,127,0,.08); top: -40px; right: 8%; }
.ob2 { width: 240px; height: 240px; background: rgba(0,68,179,.18); bottom: 12%; left: -30px; }

.hbdg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,127,0,.13);
  border: 1px solid rgba(247,127,0,.38);
  color: var(--orl);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .78em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hbdg .dot {
  width: 6px;
  height: 6px;
  background: var(--or);
  border-radius: 50%;
  animation: pd 1.8s ease infinite;
}
@keyframes pd {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.5); }
}

#hero h1 { font-size: clamp(2.1rem, 4vw, 4.2rem); line-height: 1.12; color: #fff; margin-bottom: 18px; }
#hero h1 .hi { color: var(--or); }
.tcur { animation: bl .75s step-end infinite; color: var(--or); }
@keyframes bl { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
#hero .lead { color: rgba(255,255,255,.7); font-size: 1.08em; line-height: 1.78; max-width: 500px; margin-bottom: 32px; }

.hsts { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hsi .nm { font-family: 'Space Grotesk', sans-serif; font-size: 1.9em; font-weight: 700; color: #fff; line-height: 1; }
.hsi .nm em { color: var(--or); font-style: normal; }
.hsi .lb { font-size: .74em; color: rgba(255,255,255,.48); margin-top: 4px; }

/* Hero floating cards */
.hfc {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 11px 15px;
  box-shadow: 0 12px 38px rgba(0,0,0,.26);
  display: flex;
  align-items: center;
  gap: 11px;
  animation: flt 4s ease-in-out infinite;
}
@keyframes flt { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hfc.fc1 { bottom: -14px; left: -14px; }
.hfc.fc2 { top: -14px; right: -14px; animation-delay: 2s; }
.hfic { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.hfl { font-size: .65em; color: var(--g5); }
.hfv { font-family: 'Space Grotesk', sans-serif; font-size: .97em; font-weight: 700; color: var(--nvd); }
.hvis { position: relative; }
.himw { border-radius: 16px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,.55); position: relative; }
.hph {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #002468, #000e30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.28);
  gap: 10px;
  font-size: .8em;
}
.hph i { font-size: 2.6em; }
#heroImg { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: none; }

/* Upload zone */
.upz { position: relative; cursor: pointer; }
.upz input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 10; }
.upov {
  position: absolute;
  inset: 0;
  background: rgba(0,21,68,.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  opacity: 0;
  transition: var(--tr);
  border-radius: inherit;
}
.upz:hover .upov { opacity: 1; }
.upov i { font-size: 1.7em; }
.upov span { font-size: .76em; font-weight: 600; }

/* Hero Contact Form */
.hfw {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}
.hfhd {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(247,127,0,.15);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hfic2 { width: 38px; height: 38px; background: var(--or); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1em; flex-shrink: 0; }
.hftit { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #fff; font-size: 1.02em; }
.hfsub { font-size: .72em; color: rgba(255,255,255,.6); margin-top: 1px; }
.hfbdg { margin-left: auto; font-size: .68em; font-weight: 600; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,.08); padding: 5px 10px; border-radius: 100px; white-space: nowrap; }
.hfbd { padding: 22px 24px; }
.hfrow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.hfg { margin-bottom: 12px; }
.hfg label { display: block; font-size: .73em; font-weight: 600; color: rgba(255,255,255,.65); margin-bottom: 5px; letter-spacing: .2px; }
.hfinp {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 10px 13px;
  font-size: .86em;
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  transition: .3s ease;
  outline: none;
}
.hfinp::placeholder { color: rgba(255,255,255,.35); }
.hfinp:focus { border-color: var(--or); background: rgba(255,255,255,.12); box-shadow: 0 0 0 3px rgba(247,127,0,.15); }
.hfinp option { background: #001F52; color: #fff; }
textarea.hfinp { resize: none; }
.hfbtn {
  width: 100%;
  padding: 13px;
  background: var(--or);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: .93em;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.hfbtn:hover { background: var(--ord); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,127,0,.4); }
.hftr { display: flex; gap: 14px; flex-wrap: wrap; }
.hftr span { font-size: .71em; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 5px; }
.hftr span i { color: #4ade80; font-size: .75em; }

/* ════════════════════════════════════════
   CLIENTS MARQUEE
════════════════════════════════════════ */
#clients {
  padding: 50px 0;
  border-bottom: 1px solid var(--g2);
  overflow: hidden;
  width: 100%;
}
.clbl { font-size: .73em; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--g5); text-align: center; margin-bottom: 26px; }

.mtrk {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.minn {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: mscr 32s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
  will-change: transform;
  width: max-content;
}
@keyframes mscr { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.cbd { display: inline-flex; align-items: center; gap: 9px; color: var(--g5); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .93em; opacity: .5; transition: var(--tr); cursor: default; flex-shrink: 0; }
.cbd:hover { opacity: 1; color: var(--nv); }
.cbd .ci { width: 32px; height: 32px; background: var(--g2); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .88em; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
#services { padding: 88px 0; }
.service-section-padding { padding-left: 30px; padding-right: 30px; }
.svc {
  background: #fff;
  border: 1px solid var(--g2);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.svc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--tr);
}
.svc:hover { border-color: transparent; box-shadow: 0 14px 50px rgba(0,50,133,.1); transform: translateY(-5px); }
.svc:hover::after { transform: scaleX(1); }
.sic { width: 50px; height: 50px; background: rgba(247,127,0,.1); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.3em; color: var(--or); margin-bottom: 16px; transition: var(--tr); }
.svc:hover .sic { background: var(--or); color: #fff; }
.svc h4 { font-size: 1.02em; margin-bottom: 8px; }
.svc p { font-size: .88em; color: var(--g5); line-height: 1.7; margin-bottom: 14px; }
.slnk { font-size: .82em; font-weight: 600; color: var(--or); display: inline-flex; align-items: center; gap: 5px; transition: var(--tr); }
.slnk:hover { gap: 9px; color: var(--ord); }

/* ════════════════════════════════════════
   TECH STACK
════════════════════════════════════════ */
#ts { padding: 80px 0; background: var(--nvd); }
#ts .stt { color: #fff; }
#ts .ssb { color: rgba(255,255,255,.55); }
.ttbs { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 30px; }
.ttb { padding: 8px 20px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,.14); background: transparent; font-size: .8em; font-weight: 600; color: rgba(255,255,255,.58); cursor: pointer; transition: var(--tr); font-family: 'Source Sans 3', sans-serif; }
.ttb:hover { border-color: rgba(247,127,0,.45); color: rgba(255,255,255,.88); }
.ttb.act { background: var(--or); border-color: var(--or); color: #fff; }
.tgrd { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 12px; }
.tpl { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 15px 10px; display: flex; flex-direction: column; align-items: center; gap: 7px; transition: var(--tr); cursor: default; position: relative; }
.tpl:hover { background: rgba(255,255,255,.1); border-color: rgba(247,127,0,.38); transform: translateY(-4px); }
.tpl i { font-size: 1.9em; }
.tpl span { font-size: .68em; font-weight: 600; color: rgba(255,255,255,.68); text-align: center; line-height: 1.3; }
.tpl::after { content: attr(data-tip); position: absolute; bottom: 108%; left: 50%; transform: translateX(-50%); background: #fff; color: var(--nvd); font-size: .64em; white-space: nowrap; padding: 4px 9px; border-radius: 5px; opacity: 0; pointer-events: none; transition: var(--tr); font-family: 'Source Sans 3', sans-serif; font-weight: 600; box-shadow: 0 4px 14px rgba(0,0,0,.16); }
.tpl:hover::after { opacity: 1; }

/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
#why { padding: 88px 0; background: var(--off); }
.wf { display: flex; gap: 15px; margin-bottom: 26px; }
.wic { width: 43px; height: 43px; min-width: 43px; background: rgba(247,127,0,.11); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.05em; color: var(--or); }
.wt h5 { font-size: .95em; margin-bottom: 4px; }
.wt p { font-size: .86em; color: var(--g5); line-height: 1.65; margin: 0; }
.wvis { background: #fff; border-radius: 16px; padding: 26px; border: 1px solid var(--g2); }
.wimga { width: 100%; aspect-ratio: 4/3; background: var(--g1); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 9px; color: var(--g5); font-size: .78em; margin-bottom: 16px; position: relative; overflow: hidden; }
.wimga img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 11px; }
.wbg { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.wb { background: var(--off); border-radius: 10px; padding: 13px 15px; border: 1px solid var(--g2); }
.wbn { font-family: 'Space Grotesk', sans-serif; font-size: 1.5em; font-weight: 700; color: var(--nvd); }
.wbn em { color: var(--or); font-style: normal; }
.wbl { font-size: .72em; color: var(--g5); margin-top: 2px; }

/* ════════════════════════════════════════
   PORTFOLIO
════════════════════════════════════════ */
#portfolio { padding: 88px 0; }
.pfil { display: flex; gap: 7px; flex-wrap: wrap; }
.pfb { padding: 7px 17px; border-radius: 100px; border: 1.5px solid var(--g2); background: transparent; font-size: .8em; font-weight: 600; color: var(--g5); cursor: pointer; transition: var(--tr); font-family: 'Source Sans 3', sans-serif; }
.pfb:hover, .pfb.act { background: var(--nv); border-color: var(--nv); color: #fff; }
.pfc { border-radius: 14px; overflow: hidden; position: relative; }
.pfp { width: 100%; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--g1), var(--g2)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--g5); font-size: .78em; transition: transform .5s ease; }
.pfp i { font-size: 1.9em; }
.pfc img.pimg { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .5s ease; }
.pfo { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,18,54,.92), transparent 55%); opacity: 0; transition: var(--tr); display: flex; align-items: flex-end; padding: 20px; }
.pfc:hover .pfo { opacity: 1; }
.pfc:hover .pfp, .pfc:hover .pimg { transform: scale(1.05); }
.pft { font-size: .68em; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orl); margin-bottom: 2px; }
.pfh { color: #fff; font-size: .95em; margin: 0; font-family: 'Space Grotesk', sans-serif; }
.pfe { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; background: rgba(255,255,255,.14); backdrop-filter: blur(6px); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .8em; opacity: 0; transition: var(--tr); }
.pfc:hover .pfe { opacity: 1; }

/* ════════════════════════════════════════
   PROCESS
════════════════════════════════════════ */
#process { padding: 88px 0; background: var(--off); }
.prst { text-align: center; position: relative; padding: 0 8px; }
.prn { width: 56px; height: 56px; background: var(--or); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.05em; margin: 0 auto 16px; position: relative; z-index: 1; transition: var(--tr); }
.prst:hover .prn { background: var(--nv); transform: scale(1.08); }
.prc { position: absolute; top: 28px; left: calc(50% + 28px); right: calc(-50% + 28px); height: 2px; background: linear-gradient(90deg, var(--or), transparent); opacity: .22; }
.prst:last-child .prc { display: none; }
.prst h5 { font-size: .95em; margin-bottom: 6px; }
.prst p { font-size: .84em; color: var(--g5); line-height: 1.6; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
#testimonials { padding: 88px 0; background: #fff; }
.tc { background: #fff; border: 1px solid var(--g2); border-radius: 16px; padding: 28px 24px; height: 100%; transition: var(--tr); }
.tc:hover { box-shadow: 0 14px 50px rgba(0,50,133,.1); border-color: transparent; transform: translateY(-5px); }
.tq { font-size: 2.3em; color: var(--or); line-height: 1; margin-bottom: 10px; font-family: Georgia, serif; }
.tst { color: var(--or); font-size: .78em; margin-bottom: 12px; }
.ttx { font-size: .91em; line-height: 1.75; color: var(--g7); margin-bottom: 18px; }
.tau { display: flex; align-items: center; gap: 11px; }
.tav { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .86em; flex-shrink: 0; }
.tnm { font-weight: 700; font-size: .86em; color: var(--nvd); }
.trl { font-size: .74em; color: var(--g5); }

/* ════════════════════════════════════════
   STATS
════════════════════════════════════════ */
#stats { padding: 78px 0; background: var(--or); }
.sti { text-align: center; }
.stn { font-family: 'Space Grotesk', sans-serif; font-size: 2.75em; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 6px; }
.stl { font-size: .83em; color: rgba(255,255,255,.83); font-weight: 600; }
.sdv { width: 1px; height: 52px; background: rgba(255,255,255,.24); align-self: center; }

/* ════════════════════════════════════════
   BLOG
════════════════════════════════════════ */
#blog { padding: 88px 0; }
.blc { background: #fff; border-radius: 14px; overflow: hidden; height: 100%; transition: var(--tr); border: 1px solid var(--g2); }
.blc:hover { box-shadow: 0 14px 50px rgba(0,50,133,.1); transform: translateY(-5px); }
.blph { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--nv), var(--nvl)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,.28); gap: 8px; font-size: .78em; position: relative; }
.blph i { font-size: 1.7em; }
.blb { padding: 20px 18px; }
.bltg { display: inline-block; background: rgba(247,127,0,.1); color: var(--ord); font-size: .68em; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; padding: 3px 8px; margin-bottom: 9px; }
.blc h5 { font-size: .95em; margin-bottom: 8px; line-height: 1.44; }
.blc p { font-size: .84em; color: var(--g5); line-height: 1.65; margin-bottom: 12px; }
.blm { font-size: .74em; color: var(--g5); display: flex; align-items: center; gap: 11px; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
#faq { padding: 88px 0; background: var(--off); }
.fi { border: 1px solid var(--g2); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.fq { padding: 16px 20px; font-weight: 600; font-size: .93em; color: var(--nvd); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; border: none; width: 100%; text-align: left; font-family: 'Space Grotesk', sans-serif; transition: var(--tr); }
.fq:hover { background: var(--off); }
.fq.act { color: var(--or); }
.fiw { width: 26px; height: 26px; background: var(--g1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8em; color: var(--g5); transition: var(--tr); min-width: 26px; }
.fq.act .fiw { background: var(--or); color: #fff; transform: rotate(45deg); }
.fans { max-height: 0; overflow: hidden; transition: max-height .38s ease; background: #fff; }
.fans.op { max-height: 200px; }
.fans p { font-size: .88em; color: var(--g5); line-height: 1.72; margin: 0; padding: 13px 20px 16px; border-top: 1px solid var(--g1); }

/* ════════════════════════════════════════
   CTA
════════════════════════════════════════ */
#cta { padding: 88px 0; background: var(--nvd); position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; top: -55%; right: -6%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(247,127,0,.11), transparent 70%); border-radius: 50%; }
#cta .stt { color: #fff; }
#cta .ssb { color: rgba(255,255,255,.58); }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
#contact { padding: 88px 0; }
.ccard { background: #fff; border-radius: 16px; padding: 36px 32px; border: 1px solid var(--g2); }
.cii { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 20px; }
.ciic { width: 43px; height: 43px; min-width: 43px; background: rgba(247,127,0,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1em; color: var(--or); }
.cii h6 { font-size: .74em; color: var(--g5); margin-bottom: 2px; font-family: 'Source Sans 3', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.cii p { font-size: .91em; color: var(--nvd); font-weight: 600; margin: 0; }
.fc { border: 1.5px solid var(--g2); border-radius: 8px; padding: 12px 14px; font-size: .88em; font-family: 'Source Sans 3', sans-serif; transition: var(--tr); color: var(--g7); background: var(--off); width: 100%; }
.fc:focus { border-color: var(--or); box-shadow: 0 0 0 3px rgba(247,127,0,.1); outline: none; background: #fff; }
.fc::placeholder { color: var(--g5); font-size: .84em; }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
.fu { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer-topbar {
  background: var(--nvd);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 60px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px 0;
  flex: 1;
  min-width: 180px;
}

.topbar-icon {
  width: 46px;
  height: 46px;
  background: rgba(249,154,30,.12);
  border: 1px solid rgba(249,154,30,.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #f99a1e;
  flex-shrink: 0;
  transition: all .3s;
}
.topbar-item:hover .topbar-icon { background: #f99a1e; color: #fff; transform: scale(1.08); }

.topbar-text h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,.9); margin: 0 0 2px; line-height: 1.2; }
.topbar-text p, .topbar-text a { font-size: 0.8rem; color: rgba(255,255,255,.48); margin: 0; text-decoration: none; transition: color .2s; line-height: 1.3; }
.topbar-text a:hover { color: #f99a1e; }
.topbar-text a.highlight { color: #f99a1e; font-weight: 600; }

.topbar-divider { width: 1px; background: rgba(255,255,255,.08); margin: 12px 20px; align-self: stretch; }

.footer-main { background: var(--nvd); padding: 60px 60px 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand .logo img { height: 44px; width: auto; display: block; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 22px; }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  transition: all .28s;
  color: #fff;
}
.badge-btn:hover { background: rgba(249,154,30,.12); border-color: rgba(249,154,30,.35); transform: translateY(-2px); color: #f99a1e; }
.badge-btn i { font-size: 1.35rem; color: #f99a1e; }
.badge-btn .btn-label { display: flex; flex-direction: column; }
.badge-btn .btn-label span:first-child { font-size: 0.65rem; color: rgba(255,255,255,.4); line-height: 1; font-family: 'Source Sans 3', sans-serif; }
.badge-btn .btn-label span:last-child { font-size: 0.82rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: rgba(255,255,255,.88); line-height: 1.2; }

.footer-nav h3, .footer-subscribe h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(249,154,30,.3);
  display: inline-block;
}

.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a { font-size: 0.875rem; color: rgba(255,255,255,.85); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: all .22s; font-family: 'Work Sans', sans-serif; }
.footer-nav ul li a::before { content: '›'; color: rgba(249,154,30,.5); font-size: 1rem; transition: all .22s; }
.footer-nav ul li a:hover { color: #f99a1e; padding-left: 4px; }
.footer-nav ul li a:hover::before { color: #f99a1e; }

.footer-subscribe p { font-size: 0.85rem; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 16px; }

.subscribe-form {
  display: flex;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(255,255,255,.04);
  transition: border-color .25s;
}
.subscribe-form:focus-within { border-color: rgba(249,154,30,.5); box-shadow: 0 0 0 3px rgba(249,154,30,.08); }
.subscribe-form input { flex: 1; background: transparent; border: none; outline: none; padding: 11px 14px; font-size: 0.85rem; color: rgba(255,255,255,.8); font-family: 'Work Sans', sans-serif; }
.subscribe-form input::placeholder { color: rgba(255,255,255,.3); }
.subscribe-form button { background: #f99a1e; border: none; cursor: pointer; width: 44px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.9rem; transition: background .25s; flex-shrink: 0; }
.subscribe-form button:hover { background: #e08010; }

.social-icons { display: flex; gap: 9px; flex-wrap: wrap; }
.social-icons a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 0.9rem; text-decoration: none; transition: all .25s; background: rgba(255,255,255,.04); }
.social-icons a:hover { background: #f99a1e; border-color: #f99a1e; color: #fff; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(249,154,30,.35); }

/* Footer Bottom */
.footer-bottom {
  background: var(--or);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .copyright { color: rgb(0,31,82); font-size: 0.82rem; margin: 0; font-family: 'Work Sans', sans-serif; }
.footer-bottom .copyright a { color: white; text-decoration: none; font-weight: 600; transition: opacity .2s; }
.footer-bottom .copyright a:hover { opacity: .8; }

.footer-links { display: flex; gap: 10px; align-items: center; }
.footer-links a { color: #fff; font-size: 0.8rem; text-decoration: none; font-family: 'Work Sans', sans-serif; transition: color .2s; }
.footer-links a:hover { color: #fff; opacity: .8; }
.footer-links span { color: rgba(255,255,255,.15); font-size: 0.7rem; }

/* Scroll Top */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #f99a1e;
  color: #fff;
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(249,154,30,.45);
  transition: all .25s;
  z-index: 998;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: #e08010; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(249,154,30,.55); }

/* Client Logo Badge */
.client-logo-badge {
  background: white;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 85px;
  margin-bottom: 20px;
  overflow: hidden;
}
.client-logo-badge:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.client-logo-badge img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; }
.client-logo-badge:hover img { filter: grayscale(0%); opacity: 1; }

/* Tech Badges Footer */
.tech-badges1 { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.tech-badge1 { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; padding: 5px 11px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.3px; display: flex; align-items: center; gap: 5px; }
.tech-badge1 i { font-size: 12px; }
.tech-badge1.react { color: #61dafb; border-color: rgba(97,218,251,0.2); }
.tech-badge1.figma { color: #f24e1e; border-color: rgba(242,78,30,0.2); }
.tech-badge1.node  { color: #84c441; border-color: rgba(132,196,65,0.2); }
.tech-badge1.aws   { color: #ff9900; border-color: rgba(255,153,0,0.2); }
.tech-badge1.next  { color: #fff; border-color: rgba(255,255,255,0.15); }
.tech-badge1.ts    { color: #3178c6; border-color: rgba(49,120,198,0.3); }

/* ════════════════════════════════════════
   LARGE SCREEN — 1920px
════════════════════════════════════════ */
@media (min-width: 1920px) {
  :root { --header-height: 80px; }
  section { padding-top: 110px !important; padding-bottom: 110px !important; }
  #hero { padding: 110px 0 90px; }
  #hero h1 { font-size: clamp(3rem, 3.5vw, 5rem); }
  #hero .lead { font-size: 1.2rem; max-width: 620px; }
  .logo img { height: 52px; }
  nav ul { gap: 2.4rem; }
  nav ul li > a { font-size: 1.05rem; }
  .cta-button { padding: 0.75rem 1.8rem; font-size: 1.02rem; }
  .mega-sidebar { width: 300px; }
  .mega-sidebar-item { font-size: 1rem; padding: 0.8rem 1.1rem; }
  .mega-sidebar-item i { font-size: 1.6rem; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; }
  .service-icon { width: 52px; height: 52px; font-size: 1.75rem; }
  .service-card h4 { font-size: 1rem; }
  .content-section h3 { font-size: 1.6rem; }
  .mega-content { padding: 2rem 2.5rem; }
  .stt { font-size: clamp(2rem, 2.2vw, 3rem); }
  .ssb { font-size: 1.15rem; }
  .slb { font-size: .85rem; letter-spacing: 3px; }
  .bp, .bo, .bw { padding: 15px 34px; font-size: 1rem; border-radius: 9px; }
  .svc { padding: 34px 28px; border-radius: 18px; }
  .sic { width: 60px; height: 60px; font-size: 1.55rem; border-radius: 13px; }
  .svc h4 { font-size: 1.15rem; }
  .svc p { font-size: 1rem; }
  .hsts { gap: 42px; margin-top: 50px; }
  .hsi .nm { font-size: 2.4rem; }
  .hsi .lb { font-size: .85rem; }
  .hbdg { font-size: .88rem; padding: 8px 20px; }
  .prn { width: 68px; height: 68px; font-size: 1.3rem; }
  .tgrd { grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); gap: 14px; }
  .tpl { padding: 18px 12px; border-radius: 14px; }
  .tpl i { font-size: 2.3rem; }
  .tpl span { font-size: .78rem; }
  .ttb { padding: 10px 24px; font-size: .9rem; }
  .tc { padding: 32px 28px; border-radius: 18px; }
  .tq { font-size: 2.8rem; }
  .ttx { font-size: 1.02rem; }
  .tnm { font-size: .96rem; }
  .trl { font-size: .83rem; }
  .tav { width: 48px; height: 48px; font-size: .96rem; }
  .stn { font-size: 3.4rem; }
  .stl { font-size: .95rem; }
  .sdv { height: 64px; }
  .blb { padding: 24px 22px; }
  .blc h5 { font-size: 1.05rem; }
  .blc p { font-size: .95rem; }
  .bltg { font-size: .76rem; }
  .blm { font-size: .83rem; }
  .fq { padding: 18px 24px; font-size: 1.05rem; }
  .fans p { font-size: 1rem; padding: 16px 24px 20px; }
  .cii { gap: 16px; margin-bottom: 26px; }
  .ciic { width: 52px; height: 52px; font-size: 1.15rem; }
  .cii p { font-size: 1.02rem; }
  .ccard { padding: 42px 38px; border-radius: 20px; }
  .fc { padding: 14px 17px; font-size: 1rem; border-radius: 10px; }
  .hfhd { padding: 22px 28px; }
  .hftit { font-size: 1.15rem; }
  .hfsub { font-size: .82rem; }
  .hfbd { padding: 26px 28px; }
  .hfinp { padding: 12px 16px; font-size: .96rem; }
  .hfbtn { padding: 15px; font-size: 1.05rem; }
  .hfic2 { width: 46px; height: 46px; font-size: 1.15rem; }
  .wic { width: 52px; height: 52px; font-size: 1.25rem; }
  .wt h5 { font-size: 1.08rem; }
  .wt p { font-size: .96rem; }
  .wbn { font-size: 1.85rem; }
  .wbl { font-size: .83rem; }
  .wbg { gap: 12px; }
  .wb { padding: 16px 18px; border-radius: 12px; }
  .dv { width: 52px; height: 4px; margin: 14px 0 6px; }
  .cbd { font-size: 1.06rem; }
  .cbd .ci { width: 38px; height: 38px; font-size: 1rem; border-radius: 9px; }
  #btt { width: 54px; height: 54px; font-size: 1rem; bottom: 32px; right: 28px; }
  .footer-topbar { padding: 0 80px; }
  .footer-main { padding: 72px 80px 56px; }
  .footer-bottom { padding: 22px 80px; }
  .footer-grid { gap: 52px; max-width: 1700px; }
  .topbar-icon { width: 54px; height: 54px; font-size: 1.25rem; border-radius: 14px; }
  .topbar-text h4 { font-size: 0.95rem; }
  .topbar-text p, .topbar-text a { font-size: 0.88rem; }
  .footer-brand p { font-size: 0.96rem; }
  .footer-nav h3, .footer-subscribe h3 { font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 22px; }
  .footer-nav ul li a { font-size: 0.96rem; }
  .footer-subscribe p { font-size: 0.94rem; }
  .subscribe-form input { font-size: 0.94rem; padding: 13px 16px; }
  .subscribe-form button { width: 50px; font-size: 1rem; }
  .social-icons a { width: 44px; height: 44px; font-size: 1rem; border-radius: 11px; }
  .footer-bottom .copyright { font-size: 0.9rem; }
  .footer-links a { font-size: 0.88rem; }
  .scroll-top { width: 52px; height: 52px; font-size: 18px; bottom: 34px; right: 34px; border-radius: 14px; }
  .badge-btn { padding: 12px 16px; border-radius: 12px; }
  .badge-btn i { font-size: 1.55rem; }
  .footer-brand .logo img { height: 52px; }
  .client-logo-badge { height: 75px; padding: 15px; }
}

/* ════════════════════════════════════════
   LARGE SCREEN — 2560px
════════════════════════════════════════ */
@media (min-width: 2560px) {
  :root { --header-height: 96px; }
  section { padding-top: 140px !important; padding-bottom: 140px !important; }
  #hero { padding: 140px 0 110px; min-height: 100vh; }
  #hero h1 { font-size: clamp(3.5rem, 3.8vw, 6rem); }
  #hero .lead { font-size: 1.45rem; max-width: 740px; line-height: 1.85; }
  .logo img { height: 64px; }
  nav ul { gap: 3rem; }
  nav ul li > a { font-size: 1.2rem; }
  .cta-button { padding: 0.9rem 2.2rem; font-size: 1.15rem; }
  .mega-sidebar { width: 360px; }
  .mega-sidebar-item { font-size: 1.15rem; padding: 0.95rem 1.3rem; gap: 1.2rem; }
  .mega-sidebar-item i { font-size: 1.85rem; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
  .service-icon { width: 62px; height: 62px; font-size: 2rem; }
  .service-card { padding: 1rem 1.25rem; }
  .service-card h4 { font-size: 1.12rem; }
  .content-section h3 { font-size: 1.85rem; margin-bottom: 1.6rem; }
  .mega-content { padding: 2.5rem 3rem; }
  .hamburger span { width: 32px; height: 4px; }
  .stt { font-size: clamp(2.4rem, 2.5vw, 3.6rem); }
  .ssb { font-size: 1.35rem; line-height: 1.78; }
  .slb { font-size: 1rem; letter-spacing: 3.5px; margin-bottom: 12px; }
  .bp, .bo, .bw { padding: 18px 42px; font-size: 1.15rem; border-radius: 11px; gap: 10px; }
  .dv { width: 60px; height: 5px; margin: 18px 0 32px; }
  .svc { padding: 40px 34px; border-radius: 20px; }
  .sic { width: 72px; height: 72px; font-size: 1.8rem; border-radius: 16px; margin-bottom: 20px; }
  .svc h4 { font-size: 1.35rem; margin-bottom: 10px; }
  .svc p { font-size: 1.15rem; line-height: 1.75; margin-bottom: 18px; }
  .slnk { font-size: .96rem; }
  .hsts { gap: 56px; margin-top: 64px; }
  .hsi .nm { font-size: 3rem; }
  .hsi .lb { font-size: 1rem; margin-top: 6px; }
  .hbdg { font-size: 1rem; padding: 10px 24px; gap: 10px; }
  .hbdg .dot { width: 8px; height: 8px; }
  .prn { width: 84px; height: 84px; font-size: 1.55rem; margin-bottom: 22px; }
  .prst h5 { font-size: 1.12rem; }
  .prst p { font-size: 1rem; }
  .tgrd { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
  .tpl { padding: 22px 14px; border-radius: 16px; gap: 10px; }
  .tpl i { font-size: 2.7rem; }
  .tpl span { font-size: .88rem; }
  .ttb { padding: 12px 28px; font-size: 1rem; border-radius: 100px; }
  .ttbs { gap: 10px; margin-bottom: 36px; }
  .tc { padding: 38px 34px; border-radius: 22px; }
  .tq { font-size: 3.4rem; }
  .ttx { font-size: 1.18rem; line-height: 1.82; }
  .tnm { font-size: 1.08rem; }
  .trl { font-size: .94rem; }
  .tav { width: 56px; height: 56px; font-size: 1.08rem; }
  .stn { font-size: 4.2rem; }
  .stl { font-size: 1.1rem; }
  .sdv { height: 76px; }
  .blb { padding: 28px 26px; }
  .blc h5 { font-size: 1.2rem; line-height: 1.48; }
  .blc p { font-size: 1.08rem; line-height: 1.72; }
  .bltg { font-size: .86rem; padding: 4px 11px; }
  .blm { font-size: .94rem; gap: 16px; }
  .fq { padding: 22px 28px; font-size: 1.2rem; }
  .fiw { width: 32px; height: 32px; font-size: .92rem; }
  .fans p { font-size: 1.14rem; padding: 18px 28px 24px; }
  .fi { border-radius: 13px; margin-bottom: 11px; }
  .cii { gap: 18px; margin-bottom: 30px; }
  .ciic { width: 60px; height: 60px; font-size: 1.35rem; border-radius: 13px; }
  .cii h6 { font-size: .86rem; }
  .cii p { font-size: 1.15rem; }
  .ccard { padding: 52px 46px; border-radius: 24px; }
  .fc { padding: 16px 20px; font-size: 1.12rem; border-radius: 12px; }
  .hfhd { padding: 26px 32px; gap: 16px; }
  .hftit { font-size: 1.3rem; }
  .hfsub { font-size: .94rem; }
  .hfbdg { font-size: .82rem; padding: 7px 14px; }
  .hfbd { padding: 32px 32px; }
  .hfg { margin-bottom: 16px; }
  .hfg label { font-size: .85rem; margin-bottom: 7px; }
  .hfinp { padding: 14px 18px; font-size: 1.08rem; border-radius: 10px; }
  .hfbtn { padding: 18px; font-size: 1.18rem; border-radius: 12px; margin-bottom: 18px; }
  .hfic2 { width: 54px; height: 54px; font-size: 1.35rem; border-radius: 12px; }
  .hftr span { font-size: .84rem; gap: 7px; }
  .hfrow { gap: 16px; margin-bottom: 16px; }
  .wf { gap: 18px; margin-bottom: 32px; }
  .wic { width: 60px; height: 60px; font-size: 1.45rem; border-radius: 13px; }
  .wt h5 { font-size: 1.2rem; margin-bottom: 6px; }
  .wt p { font-size: 1.08rem; line-height: 1.72; }
  .wbn { font-size: 2.2rem; }
  .wbl { font-size: .94rem; margin-top: 4px; }
  .wb { padding: 20px 22px; border-radius: 14px; }
  .wbg { gap: 14px; }
  .wvis { padding: 32px; border-radius: 20px; }
  .cbd { font-size: 1.2rem; gap: 12px; }
  .cbd .ci { width: 44px; height: 44px; font-size: 1.15rem; border-radius: 11px; }
  #btt { width: 64px; height: 64px; font-size: 1.2rem; bottom: 40px; right: 36px; }
  .hfc { padding: 14px 18px; gap: 14px; border-radius: 16px; }
  .hfv { font-size: 1.12rem; }
  .hfl { font-size: .78rem; }
  .hfic { width: 46px; height: 46px; border-radius: 11px; }
  .footer-topbar { padding: 0 120px; }
  .footer-main { padding: 96px 120px 72px; }
  .footer-bottom { padding: 28px 120px; }
  .footer-grid { gap: 64px; max-width: 2300px; }
  .topbar-icon { width: 66px; height: 66px; font-size: 1.5rem; border-radius: 16px; }
  .topbar-item { gap: 1.3rem; padding: 28px 0; min-width: 220px; }
  .topbar-text h4 { font-size: 1.1rem; }
  .topbar-text p, .topbar-text a { font-size: 1rem; }
  .topbar-divider { margin: 16px 28px; }
  .footer-brand p { font-size: 1.1rem; margin-bottom: 28px; }
  .footer-nav h3, .footer-subscribe h3 { font-size: 1rem; letter-spacing: 2.2px; margin-bottom: 26px; padding-bottom: 12px; }
  .footer-nav ul li { margin-bottom: 13px; }
  .footer-nav ul li a { font-size: 1.08rem; }
  .footer-subscribe p { font-size: 1.06rem; margin-bottom: 20px; }
  .subscribe-form { border-radius: 12px; margin-bottom: 24px; }
  .subscribe-form input { font-size: 1.06rem; padding: 14px 18px; }
  .subscribe-form button { width: 58px; font-size: 1.15rem; }
  .social-icons a { width: 50px; height: 50px; font-size: 1.15rem; border-radius: 13px; }
  .social-icons { gap: 12px; }
  .footer-bottom .copyright { font-size: 1rem; }
  .footer-links a { font-size: 0.96rem; }
  .footer-links { gap: 14px; }
  .scroll-top { width: 62px; height: 62px; font-size: 22px; bottom: 42px; right: 42px; border-radius: 16px; }
  .badge-row { gap: 14px; }
  .badge-btn { padding: 14px 20px; border-radius: 14px; gap: 13px; }
  .badge-btn i { font-size: 1.8rem; }
  .badge-btn .btn-label span:first-child { font-size: 0.75rem; }
  .badge-btn .btn-label span:last-child { font-size: 0.96rem; }
  .footer-brand .logo img { height: 64px; }
}

/* ════════════════════════════════════════
   LARGE SCREEN — 3200px
════════════════════════════════════════ */
@media (min-width: 3200px) {
  section { padding-top: 170px !important; padding-bottom: 170px !important; }
  #hero h1 { font-size: clamp(4rem, 4.2vw, 7rem); }
  #hero .lead { font-size: 1.65rem; max-width: 860px; }
  .stt { font-size: clamp(2.8rem, 2.8vw, 4.2rem); }
  .ssb { font-size: 1.55rem; }
  .slb { font-size: 1.15rem; }
  .bp, .bo, .bw { padding: 20px 50px; font-size: 1.3rem; }
  .sic { width: 86px; height: 86px; font-size: 2.1rem; }
  .svc h4 { font-size: 1.55rem; }
  .svc p { font-size: 1.3rem; }
  .prn { width: 98px; height: 98px; font-size: 1.8rem; }
  .tgrd { grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 20px; }
  .tpl i { font-size: 3.2rem; }
  .tpl span { font-size: 1rem; }
  .stn { font-size: 5rem; }
  .stl { font-size: 1.3rem; }
  .hsts .nm { font-size: 3.6rem; }
  .hsts .lb { font-size: 1.15rem; }
  .ttx { font-size: 1.35rem; }
  .blc h5 { font-size: 1.42rem; }
  .blc p { font-size: 1.28rem; }
  .fq { font-size: 1.4rem; padding: 26px 32px; }
  .fans p { font-size: 1.32rem; }
  .ccard { padding: 62px 56px; }
  .fc { padding: 18px 24px; font-size: 1.3rem; }
  .hfinp { padding: 16px 22px; font-size: 1.25rem; }
  .hfbtn { padding: 22px; font-size: 1.38rem; }
  .wt h5 { font-size: 1.42rem; }
  .wt p { font-size: 1.26rem; }
  .wbn { font-size: 2.7rem; }
  #btt { width: 78px; height: 78px; font-size: 1.45rem; }
}

/* ════════════════════════════════════════
   LARGE SCREEN — 3840px (4K)
════════════════════════════════════════ */
@media (min-width: 3840px) {
  :root { --header-height: 120px; }
  section { padding-top: 200px !important; padding-bottom: 200px !important; }
  #hero { padding: 200px 0 160px; }
  #hero h1 { font-size: clamp(4.5rem, 4.5vw, 8rem); }
  #hero .lead { font-size: 1.9rem; max-width: 1000px; line-height: 1.9; }
  .logo img { height: 80px; }
  nav ul { gap: 4rem; }
  nav ul li > a { font-size: 1.5rem; }
  .cta-button { padding: 1.1rem 2.8rem; font-size: 1.4rem; border-radius: 60px; }
  .mega-sidebar { width: 440px; }
  .mega-sidebar-item { font-size: 1.4rem; padding: 1.15rem 1.6rem; gap: 1.5rem; }
  .mega-sidebar-item i { font-size: 2.3rem; width: 40px; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 1.8rem; }
  .service-icon { width: 76px; height: 76px; font-size: 2.5rem; border-radius: 16px; }
  .service-card { padding: 1.25rem 1.5rem; border-radius: 14px; }
  .service-card h4 { font-size: 1.35rem; }
  .content-section h3 { font-size: 2.3rem; margin-bottom: 2rem; }
  .mega-content { padding: 3rem 4rem; }
  .stt { font-size: clamp(3.2rem, 3vw, 5rem); }
  .ssb { font-size: 1.75rem; }
  .slb { font-size: 1.3rem; letter-spacing: 4px; }
  .bp, .bo, .bw { padding: 24px 60px; font-size: 1.5rem; border-radius: 14px; }
  .dv { width: 70px; height: 6px; margin: 20px 0 36px; }
  .sic { width: 100px; height: 100px; font-size: 2.4rem; border-radius: 22px; }
  .svc { padding: 52px 44px; border-radius: 24px; }
  .svc h4 { font-size: 1.75rem; margin-bottom: 14px; }
  .svc p { font-size: 1.45rem; line-height: 1.8; }
  .slnk { font-size: 1.1rem; }
  .hsts { gap: 72px; margin-top: 80px; }
  .hsi .nm { font-size: 4.2rem; }
  .hsi .lb { font-size: 1.25rem; }
  .hbdg { font-size: 1.15rem; padding: 12px 28px; }
  .prn { width: 112px; height: 112px; font-size: 2.1rem; margin-bottom: 28px; }
  .prst h5 { font-size: 1.35rem; }
  .prst p { font-size: 1.2rem; }
  .tgrd { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 24px; }
  .tpl { padding: 28px 18px; border-radius: 20px; gap: 12px; }
  .tpl i { font-size: 3.8rem; }
  .tpl span { font-size: 1.12rem; }
  .ttb { padding: 14px 34px; font-size: 1.2rem; }
  .tc { padding: 46px 42px; border-radius: 26px; }
  .tq { font-size: 4.2rem; }
  .ttx { font-size: 1.5rem; line-height: 1.88; }
  .tnm { font-size: 1.25rem; }
  .trl { font-size: 1.08rem; }
  .tav { width: 68px; height: 68px; font-size: 1.25rem; }
  .stn { font-size: 6rem; }
  .stl { font-size: 1.5rem; }
  .sdv { height: 90px; }
  .blb { padding: 34px 32px; }
  .blc h5 { font-size: 1.55rem; line-height: 1.52; }
  .blc p { font-size: 1.42rem; }
  .bltg { font-size: .96rem; padding: 6px 14px; }
  .blm { font-size: 1.08rem; gap: 20px; }
  .fq { padding: 28px 36px; font-size: 1.55rem; }
  .fiw { width: 40px; height: 40px; font-size: 1.05rem; }
  .fans p { font-size: 1.48rem; padding: 22px 36px 28px; }
  .fi { border-radius: 16px; margin-bottom: 14px; }
  .cii { gap: 22px; margin-bottom: 36px; }
  .ciic { width: 72px; height: 72px; font-size: 1.6rem; border-radius: 16px; }
  .cii h6 { font-size: 1rem; }
  .cii p { font-size: 1.35rem; }
  .ccard { padding: 72px 64px; border-radius: 28px; }
  .fc { padding: 20px 26px; font-size: 1.48rem; border-radius: 14px; }
  .hfhd { padding: 32px 40px; gap: 20px; }
  .hftit { font-size: 1.6rem; }
  .hfsub { font-size: 1.1rem; }
  .hfbdg { font-size: .96rem; padding: 9px 18px; }
  .hfbd { padding: 40px 40px; }
  .hfg { margin-bottom: 20px; }
  .hfg label { font-size: 1rem; margin-bottom: 9px; }
  .hfinp { padding: 18px 24px; font-size: 1.38rem; border-radius: 12px; }
  .hfbtn { padding: 24px; font-size: 1.5rem; border-radius: 15px; margin-bottom: 22px; }
  .hfic2 { width: 64px; height: 64px; font-size: 1.6rem; border-radius: 15px; }
  .hftr span { font-size: .98rem; gap: 9px; }
  .hfrow { gap: 20px; margin-bottom: 20px; }
  .wf { gap: 22px; margin-bottom: 40px; }
  .wic { width: 72px; height: 72px; font-size: 1.7rem; border-radius: 16px; }
  .wt h5 { font-size: 1.5rem; margin-bottom: 8px; }
  .wt p { font-size: 1.35rem; }
  .wbn { font-size: 3rem; }
  .wbl { font-size: 1.1rem; margin-top: 6px; }
  .wb { padding: 26px 28px; border-radius: 18px; }
  .wbg { gap: 18px; }
  .wvis { padding: 40px; border-radius: 24px; }
  .cbd { font-size: 1.45rem; gap: 14px; }
  .cbd .ci { width: 54px; height: 54px; font-size: 1.4rem; border-radius: 13px; }
  #btt { width: 92px; height: 92px; font-size: 1.7rem; bottom: 50px; right: 46px; }
  .hfc { padding: 18px 22px; gap: 18px; border-radius: 20px; }
  .hfv { font-size: 1.35rem; }
  .hfl { font-size: .95rem; }
  .hfic { width: 56px; height: 56px; border-radius: 14px; }
  .orb.ob1 { width: 600px; height: 600px; }
  .orb.ob2 { width: 500px; height: 500px; }
  #clients { padding: 80px 0; }
  .clbl { font-size: .95rem; margin-bottom: 36px; }
  .minn { gap: 80px; }
  #stats { padding: 120px 0; }
  .footer-topbar { padding: 0 160px; }
  .footer-main { padding: 130px 160px 100px; }
  .footer-bottom { padding: 36px 160px; }
  .footer-grid { gap: 80px; max-width: 3000px; }
  .topbar-icon { width: 82px; height: 82px; font-size: 1.85rem; border-radius: 20px; }
  .topbar-item { gap: 1.6rem; padding: 36px 0; min-width: 280px; }
  .topbar-text h4 { font-size: 1.35rem; }
  .topbar-text p, .topbar-text a { font-size: 1.2rem; }
  .topbar-divider { margin: 20px 40px; }
  .footer-brand p { font-size: 1.35rem; line-height: 1.8; margin-bottom: 36px; }
  .footer-nav h3, .footer-subscribe h3 { font-size: 1.2rem; letter-spacing: 2.5px; margin-bottom: 32px; padding-bottom: 15px; border-bottom-width: 3px; }
  .footer-nav ul li { margin-bottom: 16px; }
  .footer-nav ul li a { font-size: 1.3rem; gap: 9px; }
  .footer-subscribe p { font-size: 1.28rem; margin-bottom: 26px; }
  .subscribe-form { border-radius: 16px; margin-bottom: 30px; }
  .subscribe-form input { font-size: 1.28rem; padding: 18px 22px; }
  .subscribe-form button { width: 72px; font-size: 1.4rem; }
  .social-icons a { width: 62px; height: 62px; font-size: 1.4rem; border-radius: 16px; }
  .social-icons { gap: 14px; }
  .footer-bottom .copyright { font-size: 1.2rem; }
  .footer-links a { font-size: 1.15rem; }
  .footer-links { gap: 18px; }
  .footer-links span { font-size: 0.9rem; }
  .scroll-top { width: 78px; height: 78px; font-size: 28px; bottom: 54px; right: 54px; border-radius: 20px; }
  .badge-row { gap: 18px; }
  .badge-btn { padding: 18px 26px; border-radius: 18px; gap: 16px; }
  .badge-btn i { font-size: 2.2rem; }
  .badge-btn .btn-label span:first-child { font-size: 0.9rem; }
  .badge-btn .btn-label span:last-child { font-size: 1.2rem; }
  .footer-brand .logo img { height: 80px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — Tablet (max 1100px)
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-topbar, .footer-main, .footer-bottom { padding-left: 32px; padding-right: 32px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — Tablet (max 991px)
════════════════════════════════════════ */
@media (max-width: 991px) {
  nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .mega-menu { display: none !important; } /* Mobile pe mega menu band */

  #hero { padding: 70px 0 55px; min-height: auto; }
  .hsts { gap: 20px; }
  .hfc.fc1 { bottom: -8px; left: 0; }
  .hfc.fc2 { top: -8px; right: 0; }
  .sdv { display: none; }
  #stats .d-flex { flex-wrap: wrap; gap: 34px; }
  .prc { display: none; }
  .tgrd { grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); }
}

/* ════════════════════════════════════════
   RESPONSIVE — Mobile (max 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-subscribe { grid-column: 1 / -1; }
  .footer-topbar { flex-direction: column; padding: 0 24px; }
  .topbar-divider { display: none; }
  .topbar-item { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .topbar-item:last-child { border-bottom: none; }
  .footer-main { padding: 44px 24px 36px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; text-align: center; gap: 10px; }
  .footer-grid { gap: 28px; }
  .client-logo-badge { height: 70px; padding: 12px; margin-bottom: 15px; }

  .stt { font-size: 1.55rem; }
  .hvis { margin-top: 40px; }
  .ccard { padding: 22px 16px; }
  .wbg { grid-template-columns: 1fr 1fr; }
  .tgrd { grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 9px; }
  .hfrow { grid-template-columns: 1fr; }
  .hfw { margin-top: 36px; }
  .hfbd { padding: 18px 16px; }
  .hfhd { padding: 14px 16px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — Small Mobile (max 480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
  .header-container { padding: 0 1rem; }
  .logo img { height: 36px; }
  .hsi .nm { font-size: 1.45rem; }
  .hsts { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-main { padding: 36px 18px 28px; }
  .footer-topbar { padding: 0 18px; }
  .footer-bottom { padding: 14px 18px; }
  .social-icons { gap: 8px; }
  .badge-row { flex-direction: column; }
  .client-logo-badge { height: 65px; padding: 10px; margin-bottom: 12px; }
}