/* ===========================
   BairesDev Clone - style.css
   =========================== */
  
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #e84a0c;
  --orange-hover: #c93d08;
  --dark: #1a1a2e;
  --dark-navy: #0d1b2a;
  --text-dark: #1a1a2e;
  --text-gray: #555;
  --text-light: #888;
  --border: #e8e8e8;
  --bg-light: #f8f8f8;
  --white: #fff;
  /*--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;*/
  --font: "Poppins", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 8px;
}

.nav-logo img { height: 50px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin-left: 20px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.nav-link:hover { background: var(--bg-light); color: var(--orange); }
.nav-link svg { width: 12px; height: 12px; transition: transform 0.25s; flex-shrink: 0; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  padding: 24px 28px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-wide {
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dropdown-section h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.dropdown-section a {
  display: block;
  font-size: 13.5px;
  color: var(--text-gray);
  padding: 3px 0;
  transition: color 0.2s;
}
.dropdown-section a:hover { color: var(--orange); }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0;
  width: 100%;
  height: calc(100vh - 68px);
  background: var(--white);
  z-index: 900;
  overflow-y: auto;
  padding: 16px 24px 40px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  padding: 15px 0;
  font-size: 17px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}
.mobile-nav-link:hover { color: var(--orange); }
.mobile-cta { margin-top: 24px; }
.mobile-cta .btn-primary { width: 100%; text-align: center; padding: 14px; font-size: 16px; }

/* ====== HERO ====== */
.hero {
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: #f5f4f2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-1.png);
  background-size: cover;
  background-position: center right;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,244,242,1) 42%, rgba(245,244,242,0.7) 62%, rgba(245,244,242,0) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px max(24px, calc((100vw - 1200px)/2 + 24px)) 90px max(24px, calc((100vw - 1200px)/2 + 24px));
  max-width: calc(700px + max(24px, (100vw - 1200px)/2 + 24px));
}
.hero h1 {
  font-size: clamp(25px, 4.5vw, 43px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 17px;
  color: #444;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-primary { padding: 14px 32px; font-size: 15px; }

/* ====== TRUST BAR ====== */
.trust-bar {
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.trust-bar h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 44px;
}
.trust-bar h2 a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 56px;
  max-width: 920px;
  margin: 0 auto;
}
.client-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.client-logo-item img {
  height: 28px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.2s, opacity 0.2s;
}
.client-logo-item:hover img { filter: grayscale(0); opacity: 1; }
.client-link { font-size: 11px; color: var(--orange); font-weight: 600; }

/* ====== SERVICES ====== */
.services {
  padding: 80px 24px;
  background: var(--white);
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
}
.section-header h2 span { color: var(--orange); }
.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid var(--text-dark);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.section-link:hover { color: var(--orange); border-color: var(--orange); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
}
.service-card {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--orange); }
.service-icon { margin-bottom: 14px; }
.service-icon svg { width: 36px; height: 36px; color: var(--orange); }
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p { font-size: 14px; color: var(--text-gray); line-height: 1.65; }
.service-card p a { color: var(--text-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ====== FEATURED IN ====== */
.featured {
  background: var(--dark-navy);
  padding: 36px 24px;
}
.featured-inner { max-width: 1200px; margin: 0 auto; }
.featured-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.featured-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.featured-logos img {
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.featured-logos img:hover { opacity: 1; }

/* ====== RECOGNITION ====== */
.recognition {
  padding: 80px 24px;
  background: var(--bg-light);
}
.recognition h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  margin-bottom: 8px;
}
.recognition > .section-inner > p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 44px;
}
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.recognition-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.recognition-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.recognition-card img { height: 48px; object-fit: contain; margin-bottom: 16px; }
.recognition-card p { font-size: 14px; color: var(--text-gray); line-height: 1.65; }
.recognition-card a { color: var(--orange); font-weight: 600; }

/* ====== TECH STACK ====== */
.tech-stack {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}
.tech-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 44px;
  padding: 0 24px;
}
.tech-intro h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  margin-bottom: 10px;
}
.tech-intro p { font-size: 16px; color: var(--text-gray); }
.tech-scroll-wrap { overflow: hidden; }
.tech-track {
  display: flex;
  gap: 10px;
  animation: scrollLeft 28s linear infinite;
  width: max-content;
  padding: 4px 0;
}
.tech-track:hover { animation-play-state: paused; }
.tech-track-2 { animation-direction: reverse; margin-top: 10px; }
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.tech-pill:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.tech-cta { text-align: center; margin-top: 44px; padding: 0 24px; }

/* ====== TESTIMONIALS ====== */
.testimonials {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://assets.bairesdev.com//image/upload/c_limit,w_1920/dpr_auto/f_auto/q_auto/v1/www/core/testimonials_ky4r6i?_a=BAVAfVDW0');
  background-size: cover;
  background-position: center;
}
.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.93), rgba(26,26,46,0.9));
}
.testimonials-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.testimonials-header p { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.testimonials-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.testimonials-cta:hover { color: var(--white); }
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  padding: 26px;
  transition: background 0.2s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.11); }
.testimonial-logo {
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  margin-bottom: 18px;
}
.testimonial-link {
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: block;
}
.testimonial-quote {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.48); }

/* ====== AWARDS ====== */
.awards {
  padding: 80px 24px;
  background: var(--white);
}
.awards-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 52px;
}
.awards-text h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.awards-text h2 em { color: var(--orange); font-style: normal; }
.awards-text p { font-size: 15px; color: var(--text-gray); margin-bottom: 28px; }
.awards-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--text-dark); }
.stat-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.awards-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
}
.awards-badges img { height: 80px; object-fit: contain; transition: transform 0.2s; }
.awards-badges img:hover { transform: scale(1.05); }

/* ====== WHY US ====== */
.why-us {
  padding: 80px 24px;
  background: var(--bg-light);
}
.why-us-header { text-align: center; margin-bottom: 52px; }
.why-us-header h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  margin-bottom: 4px;
}
.why-us-header p {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.why-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-card h3::before {
  content: '';
  display: inline-block;
  width: 4px; height: 18px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.why-card p { font-size: 14px; color: var(--text-gray); line-height: 1.65; }
.roles-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.role-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.2s;
}
.role-tag:hover, .role-tag.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.why-cta { text-align: center; }

/* ====== PROCESS ====== */
.process {
  padding: 80px 24px;
  background: var(--white);
}
.process-header { text-align: center; margin-bottom: 56px; }
.process-header h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-step { text-align: center; padding: 20px 16px; }
.step-icon { margin: 0 auto 16px; }
.step-icon img { height: 56px; }
.step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 10px;
}
.process-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }
.process-cta { text-align: center; margin-top: 48px; }

/* ====== BLOG ====== */
.blog { padding: 80px 24px; background: var(--bg-light); }
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-header h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.blog-img { width: 100%; height: 190px; object-fit: cover; display: block; }
.blog-body { padding: 20px; }
.blog-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 14px;
  color: var(--text-dark);
  transition: color 0.2s;
}
.blog-card:hover .blog-body h3 { color: var(--orange); }
.blog-author { display: flex; align-items: center; gap: 8px; }
.blog-author img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.blog-author span { font-size: 12px; color: var(--text-light); }

/* ====== BOTTOM CTA ====== */
.bottom-cta {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}
.bottom-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://assets.bairesdev.com//image/upload/c_limit,w_1920/dpr_auto/f_auto/q_auto/v1/www/core/bottom_cta_1_rnejgz?_a=BAVAfVDW0');
  background-size: cover;
  background-position: center;
}
.bottom-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.9), rgba(26,26,46,0.85));
}
.bottom-cta-content { position: relative; z-index: 2; }
.bottom-cta-content p { font-size: clamp(16px, 2.5vw, 22px); color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.bottom-cta-content h2 {
  font-size: clamp(26px, 4.5vw, 46px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 36px;
}
.bottom-cta-content h2 span { color: var(--orange); }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-primary { padding: 14px 36px; font-size: 15px; }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ====== FOOTER ====== */
footer {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-brand img { height: 34px; margin-bottom: 24px; display: block; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-contact { margin-bottom: 20px; }
.footer-contact a { font-size: 15px; font-weight: 600; color: var(--white); }
.footer-contact a:hover { color: var(--orange); }

.footer-newsletter { margin-top: 4px; }
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; line-height: 1.5; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-form button {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--orange-hover); }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: var(--orange); color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ====== COOKIE BAR ====== */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: rgba(13,27,42,0.98);
  color: rgba(255,255,255,0.82);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(0);
  transition: transform 0.3s;
}
.cookie-bar.hidden { transform: translateY(110%); }
.cookie-bar p { font-size: 13px; }
.cookie-bar a { color: var(--orange); text-decoration: underline; }
.cookie-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cookie-btn:hover { background: var(--orange-hover); }

/* ====== SCROLL TO TOP ====== */
.scroll-top {
  position: fixed;
  bottom: 72px; right: 24px;
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  border: none;
  box-shadow: 0 4px 16px rgba(232,74,12,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--orange-hover); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .awards-layout { grid-template-columns: 1fr; gap: 36px; }
  .recognition-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero-content { padding: 60px 24px; max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(245,244,242,0.92) 55%, rgba(245,244,242,0.65) 100%);
  }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .recognition-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .client-logos { gap: 24px 32px; }
}


*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#f5f6f7;
color:#111;
}

.container{
max-width:1200px;
margin:auto;
padding:60px 20px;
}

.header{
display:flex;
justify-content:space-between;
align-items:flex-start;
margin-bottom:40px;
flex-wrap:wrap;
}

.header h1{
font-size:40px;
font-weight:700;
line-height:1.3;
}

.header a{
text-decoration:none;
color:#111;
font-weight:500;
border-bottom:2px solid #111;
padding-bottom:4px;
}

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.card{
background:#fff;
border-radius:14px;
padding:28px;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
transition:all .25s ease;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.icon{
width:48px;
height:48px;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:18px;
font-size:20px;
color:#fff;
}

.orange{background:#e4572e;}
.dark{background:#2f3439;}
.blue{background:#1f4fbf;}
.sky{background:#2a6ed1;}
.teal{background:#49a6a6;}
.green{background:#2fa36b;}

.card h3{
font-size:20px;
margin-bottom:10px;
}

.card p{
font-size:14px;
color:#555;
line-height:1.6;
margin-bottom:18px;
}

.tags{
display:flex;
flex-wrap:wrap;
gap:8px;
}

.tags span{
font-size:12px;
padding:6px 10px;
border:1px solid #3a7cff;
color:#3a7cff;
border-radius:20px;
}

@media(max-width:992px){
.grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){

.header h1{
font-size:30px;
margin-bottom:10px;
}

.grid{
grid-template-columns:1fr;
}

}

.left {
  text-align: left;
}
