/*
  Codenerd Development
  Theme: Deep Teal + Cyan
  --accent:      #06B6D4  (electric cyan)
  --accent-dark: #0891B2  (deep cyan)
  --dark:        #020F14  (near-black teal)
  --dark-mid:    #051C24
  --dark-card:   #082533
  --light-bg:    #F0FAFB  (very light cyan)
  --light-mid:   #CCF0F5
*/

/* ── VARIABLES ── */
:root {
  --accent: #06B6D4;
  --accent-dark: #0891B2;
  --dark: #020F14;
  --dark-mid: #051C24;
  --dark-card: #082533;
  --light-bg: #F0FAFB;
  --light-mid: #CCF0F5;
  --white: #ffffff;
  --text-dark: #020F14;
  --text-light: #4A7080;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow: 0 10px 30px rgba(2, 15, 20, 0.12);
  /* Legacy aliases — keeps inline var() refs on other pages working */
  --primary-red: #06B6D4;
  --navy-blue: #020F14;
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  line-height: 1.3;
}

/* ── FULL-WIDTH SECTIONS ── */
section {
  width: 100%;
  padding: 60px 6%;
  overflow: hidden;
}

/* ── HEADER ── */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1001;
  background: transparent;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.4s ease;
}

header.sticky {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 14px 6%;
  border-bottom: 2px solid var(--light-mid);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  height: 60px;
  width: 220px;
}

.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 130px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

header.sticky .brand-logo {
  filter: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 40px;
}

.header-nav a {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 1px;
}

.header-nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}

header.sticky .header-nav a {
  color: var(--text-light);
}

header.sticky .header-nav a:hover {
  color: var(--accent);
}

/* Tech Dropdown */
.tech-expertise-dropdown {
  position: relative;
  cursor: pointer;
  margin-right: 16px;
}

.tech-label {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, opacity 0.3s;
}

header.sticky .tech-label {
  color: var(--accent);
}

.tech-label i {
  font-size: 0.78rem;
  transition: transform 0.3s;
}

.tech-expertise-dropdown:hover .tech-label i {
  transform: rotate(180deg);
}

.tech-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: var(--white);
  border-top: 3px solid var(--accent);
  box-shadow: 0 15px 40px rgba(2, 15, 20, 0.15);
  border-radius: 0 0 10px 10px;
  padding: 8px 0;
  margin-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 1005;
}

.tech-expertise-dropdown:hover .tech-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tech-dropdown-content a {
  display: block;
  padding: 9px 22px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s;
}

.tech-dropdown-content a:hover {
  background: var(--light-bg);
  color: var(--accent-dark);
  padding-left: 32px;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  position: relative;
  z-index: 2001;
}

header.sticky .nav-toggle {
  background: rgba(6, 182, 212, 0.08);
}

.nav-toggle:hover {
  background: var(--accent);
}

.nav-toggle:hover .line {
  background: var(--white) !important;
}

.hamburger-icon {
  width: 22px;
  height: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon .line {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger-icon .line:last-child {
  width: 65%;
  align-self: flex-end;
}

header.sticky .hamburger-icon .line {
  background: var(--accent);
}

.nav-toggle:hover .line:last-child {
  width: 100%;
}

/* Request Info Tab */
.request-info-tab {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 1500;
  transform: rotate(-90deg) translate(-50%, 0);
  transform-origin: left top;
  background: var(--accent);
  color: var(--white);
  padding: 9px 20px;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.92rem;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
}

.request-info-tab:hover {
  padding-top: 24px;
  background: var(--accent-dark);
}

.tab-hidden {
  opacity: 0 !important;
  pointer-events: none;
  transform: rotate(-90deg) translate(-50%, -30px) !important;
}

/* Float Icons */
.float-right-panel {
  position: fixed;
  right: 20px;
  bottom: 30%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  transition: var(--transition);
  cursor: pointer;
}

.float-icon:hover {
  transform: scale(1.1);
  background: var(--accent);
  color: var(--white);
}

/* ── HERO SLIDER ── */
.hero-slider {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}

.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 15, 20, 0.95), rgba(2, 15, 20, 0.35));
  z-index: 1;
}

.slide-content {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  padding: 0 6%;
  width: 60%;
  z-index: 2;
  color: var(--white);
  text-align: left;
}

.slide-content h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 800;
}

.slide-content p {
  font-size: 1.25rem;
  margin-bottom: 38px;
  opacity: 0.88;
  max-width: 600px;
}

.slide-content h1,
.slide-content p,
.slide-content .cta-pill {
  opacity: 1;
  transform: none;
}

.slide-1 {
  background-image: url('images/slide1.png');
}

.slide-2 {
  background-image: url('images/slide2.png');
}

.slide-3 {
  background-image: url('images/slide3.png');
}

.slide-4 {
  background-image: url('images/slide4.png');
}

.slide-5 {
  background-image: url('images/slide5.png');
}

.slide-6 {
  background-image: url('images/slide6.png');
}

/* ── CTA BUTTONS ── */
.cta-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 12px 28px rgba(6, 182, 212, 0.4);
  transition: var(--transition);
}

.cta-pill:hover {
  transform: translateY(-5px);
  background: var(--accent-dark);
  box-shadow: 0 18px 36px rgba(6, 182, 212, 0.5);
  color: var(--white);
}

.red-gradient {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35);
  transition: var(--transition);
}

.red-gradient:hover {
  transform: translateY(-5px);
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(2, 15, 20, 0.3);
}

.cta-dark {
  background: var(--dark) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 28px rgba(2, 15, 20, 0.3) !important;
}

.cta-dark:hover {
  background: var(--dark-mid) !important;
}

.cta-white {
  background: var(--white) !important;
  color: var(--dark) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.cta-white:hover {
  background: var(--light-bg) !important;
  color: var(--dark) !important;
}

/* ── MEGA NAV OVERLAY ── */
.mega-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6%;
}

.mega-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.overlay-close {
  position: absolute;
  top: 38px;
  right: 5%;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 2010;
}

.overlay-close:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--accent);
}

.mega-menu-container {
  width: 100%;
  max-width: 1400px;
}

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

.mega-menu-title {
  color: white;
  font-size: 1.7rem;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 14px;
}

.mega-menu-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 2px;
  background: var(--accent);
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 18px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s;
}

.mega-nav-overlay.active .mega-menu-list li {
  transform: translateY(0);
  opacity: 1;
}

.mega-menu-list li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mega-menu-list li a .num {
  font-size: 0.82rem;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.mega-menu-list li a:hover {
  color: white;
  padding-left: 10px;
}

@media (max-width: 1200px) {
  .mega-menu-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
  }
}

@media (max-width: 768px) {
  .overlay-close {
    top: 15px;
    right: 20px;
    font-size: 2.6rem;
  }

  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 24px;
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 15px;
    margin-top: 40px;
  }

  .mega-menu-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
}

/* ── SECTION HELPERS ── */
.section-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 30px;
}

.services-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-tag {
  color: var(--accent-dark);
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: block;
}

/* ── ABOUT SECTION ── */
.about-us-premium {
  background: var(--light-bg);
  padding: 100px 6%;
  width: 100%;
}

.about-container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 100%;
}

.about-images {
  flex: 1;
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 500px;
}

.image-stagger {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(2, 15, 20, 0.15);
  background: var(--light-mid);
}

.image-stagger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.image-stagger img:hover {
  transform: scale(1.05);
}

.image-stagger.large {
  width: 65%;
  height: 500px;
}

.image-stagger-stack {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-stagger.small {
  height: 240px;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: 40%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 12px 22px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(2, 15, 20, 0.12);
  z-index: 5;
  border: 2px solid var(--light-mid);
}

.experience-badge .num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-dark);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.experience-badge .txt {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
}

.about-text {
  flex: 1;
}

.main-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--dark);
}

.main-heading span {
  color: var(--accent-dark);
}

.quote-box {
  border-left: 4px solid var(--accent);
  background: var(--light-mid);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 28px;
}

.quote-box p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
}

.desc-para {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}

.location-info {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 35px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-info i {
  color: var(--accent-dark);
  font-size: 1.2rem;
}

/* ── STATS SECTION ── */
.stats-counter-section {
  background: var(--dark);
  padding: 70px 6%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.stats-counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(6, 182, 212, 0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  z-index: 1;
}

.stats-container {
  max-width: 100%;
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.stats-left {
  flex: 1.2;
  padding-right: 20px;
}

.stats-left h2 {
  font-size: 2.1rem;
  line-height: 1.4;
  color: var(--white);
  font-weight: 700;
}

.stats-right {
  flex: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--dark-card);
  padding: 28px 22px;
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
}

.stat-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.stat-number {
  font-size: 2.8rem;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

/* ── SERVICES DARK ── */
.services-dark {
  background: linear-gradient(rgba(2, 15, 20, 0.93), rgba(2, 15, 20, 0.93)), url('images/whatwedo.jpg') center/cover no-repeat fixed;
  padding: 70px 6%;
  width: 100%;
}

.service-circle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  margin-top: 50px;
}

.circle-card {
  text-align: center;
  color: var(--white);
  padding: 10px;
  transition: var(--transition);
}

.circle-icon {
  width: 110px;
  height: 110px;
  border: 2px solid rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: var(--accent);
  transition: var(--transition);
  position: relative;
}

.circle-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

.circle-card:hover .circle-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotateY(180deg);
}

.circle-card:hover .circle-icon::after {
  opacity: 1;
  transform: scale(1.1);
}

.circle-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.circle-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* ── SUCCESS JOURNEY ── */
.success-journey-section {
  background: var(--light-bg);
  padding: 80px 6%;
  width: 100%;
}

.sj-container {
  max-width: 100%;
}

.sj-header {
  text-align: center;
  margin-bottom: 40px;
}

.sj-header h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.sj-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.sj-grid {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.sj-line {
  position: absolute;
  top: 80px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  border-radius: 10px;
  z-index: 1;
}

.sj-step {
  flex: 1;
  min-width: 180px;
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.sj-card {
  background: var(--white);
  border-radius: 8px;
  padding: 35px 22px 28px;
  box-shadow: 0 10px 30px rgba(2, 15, 20, 0.08);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--light-mid);
  height: 100%;
}

.sj-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(6, 182, 212, 0.2);
  border-color: var(--accent);
}

.sj-number {
  width: 78px;
  height: 78px;
  background: var(--white);
  border: 4px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -72px auto 22px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}

.sj-card:hover .sj-number {
  background: var(--accent);
  color: var(--white);
  transform: rotate(360deg);
}

.sj-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.sj-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── PORTFOLIO ── */
.portfolio-section {
  background: linear-gradient(150deg, #020F14 0%, #051C24 50%, #1e0f38 100%);
  padding: 80px 6%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(6, 182, 212, 0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.portfolio-section .section-title {
  color: var(--white);
}

.portfolio-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.portfolio-slider {
  max-width: 100%;
  margin: 20px 0 10px;
  padding-bottom: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.portfolio-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-item {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.portfolio-item-inner {
  text-decoration: none;
  display: block;
  cursor: default;
}

.portfolio-card {
  height: 230px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, box-shadow 0.45s ease;
  border-top: 3px solid var(--accent);
  background: #ffffff;
}

.portfolio-item:hover .portfolio-card,
.portfolio-item-inner:hover .portfolio-card,
.portfolio-link:hover .portfolio-card {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(6, 182, 212, 0.35);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-item:hover .portfolio-image,
.portfolio-item-inner:hover .portfolio-image,
.portfolio-link:hover .portfolio-image {
  transform: scale(1.1);
}

/* Hover overlay */
.portfolio-card::after {
  content: 'View Project ↗';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.88) 0%, rgba(6, 182, 212, 0.82) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-item:hover .portfolio-card::after,
.portfolio-link:hover .portfolio-card::after {
  opacity: 1;
}

.portfolio-info {
  margin-top: 18px;
  text-align: center;
  padding: 0 4px;
}

.portfolio-info h3 {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.portfolio-item:hover .portfolio-info h3,
.portfolio-item-inner:hover .portfolio-info h3,
.portfolio-link:hover .portfolio-info h3 {
  color: var(--accent);
}

.portfolio-info p {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 30px;
  padding: 3px 12px;
}

.portfolio-section .section-cta {
  position: relative;
  z-index: 2;
}

/* ── WHAT MAKES US DIFFERENT ── */
.different-section {
  background: #f0eeff;
  background-image: radial-gradient(rgba(6, 182, 212, 0.18) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  padding: 80px 6% !important;
  width: 100%;
  position: relative;
}

.diff-header {
  margin-bottom: 55px;
}

.diff-header .section-title {
  text-align: left;
}

.diff-header .section-sub {
  margin: 0;
  text-align: left;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: diff-counter;
}

.diff-card {
  background: var(--white);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0;
  border-left: 4px solid transparent;
  box-shadow: 0 6px 28px rgba(2, 15, 20, 0.07);
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  counter-increment: diff-counter;
}

/* Decorative number watermark */
.diff-card::before {
  content: counter(diff-counter, decimal-leading-zero);
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-size: 4.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: rgba(6, 182, 212, 0.06);
  line-height: 1;
  transition: color 0.45s;
  pointer-events: none;
  user-select: none;
}

.diff-card:hover {
  transform: translateY(-12px);
  border-left-color: var(--accent);
  background: linear-gradient(145deg, #051C24, #020F14);
  box-shadow: 0 24px 55px rgba(6, 182, 212, 0.28);
}

.diff-card:hover::before {
  color: rgba(255, 255, 255, 0.04);
}

/* Icon pill */
.diff-card-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(92, 33, 182, 0.06));
  border: 1.5px solid rgba(6, 182, 212, 0.22);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diff-card:hover .diff-card-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(-8deg) scale(1.12);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.45);
}

.diff-card-content h3 {
  color: var(--dark);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.4s;
}

.diff-card:hover .diff-card-content h3 {
  color: var(--white);
}

.diff-card-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  transition: color 0.4s;
}

.diff-card:hover .diff-card-content p {
  color: rgba(255, 255, 255, 0.68);
}

/* ── TECH GRID ── */
.tech-section {
  background: var(--dark-mid);
  padding: 70px 6% !important;
  width: 100%;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.tech-logo-card {
  background: var(--dark-card);
  border: 1px solid rgba(6, 182, 212, 0.12);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: default;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-radius: 6px;
}

.tech-logo-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 14px 35px rgba(6, 182, 212, 0.2);
  border-color: var(--accent);
}

.tech-logo-card img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.tech-logo-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── INDUSTRY ── */
.industry-section {
  background: var(--light-bg);
  padding: 80px 6% !important;
  overflow: hidden;
  width: 100%;
}

.industry-nav .industry-prev,
.industry-nav .industry-next {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.industry-nav .industry-prev:hover,
.industry-nav .industry-next:hover {
  background: var(--dark);
  transform: translateY(-3px);
}

.industry-slider .swiper-slide {
  height: auto;
}

.industry-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-right: 28px;
  border-right: 1px solid var(--light-mid);
  background: var(--white);
}

@media (max-width: 768px) {
  .industry-card {
    border-right: none;
    padding-right: 0;
  }
}

.ind-icon {
  font-size: 2rem;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.industry-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.industry-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
  flex-grow: 1;
}

.ind-img {
  width: 100%;
  overflow: hidden;
  height: 210px;
}

.ind-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

/* ── FAQ ── */
.faq-section {
  background: var(--white);
  padding: 80px 6% !important;
  width: 100%;
}

.faq-list {
  border-top: 1px solid var(--light-mid);
}

.faq-item {
  border-bottom: 1px solid var(--light-mid);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  gap: 15px;
  transition: color 0.2s;
  font-family: 'Playfair Display', serif;
}

.faq-question:hover {
  color: var(--accent-dark);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}

.faq-item.open .faq-icon {
  color: var(--accent-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 5px 20px;
  font-size: 0.96rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonial-section {
  background: var(--dark);
  padding: 80px 6%;
  width: 100%;
  overflow: hidden;
}

.testimonial-slider {
  padding: 20px 0 55px;
  max-width: 100%;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.testi-stars {
  color: #f5c518;
  font-size: 0.9rem;
  margin-bottom: 18px;
  display: flex;
  gap: 3px;
}

.testi-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reviewer-name {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.reviewer-company {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 2px;
}

.swiper-pagination-bullet {
  background: var(--accent) !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent-dark) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent) !important;
}

/* ── BLOG ── */
.latest-blog-section {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 70px 6%;
  width: 100%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(2, 15, 20, 0.07);
  transition: transform 0.3s, border-bottom-color 0.3s;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid transparent;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--accent);
}

.blog-img {
  height: 220px;
  overflow: hidden;
  background: var(--dark-mid);
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-img-placeholder {
  background: var(--light-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-img-placeholder span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
}

.blog-title {
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.blog-read-more {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  transition: color 0.2s;
}

.blog-read-more:hover {
  color: var(--dark);
}

/* ── CTA BANNER ── */
.cta-banner-section {
  background: var(--accent);
  padding: 80px 6%;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(2, 15, 20, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-inner h2 {
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner-inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ── CONTACT MAP ── */
.contact-map-section {
  position: relative;
  width: 100%;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

/* ── FOOTER ── */
.footer-modern {
  background: #010A0F;
  padding: 90px 6% 40px;
  color: var(--white);
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 50px;
  align-items: flex-start;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Outfit', sans-serif !important;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
  display: block;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.footer-hours p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.footer-hours i {
  color: var(--accent);
}

.footer-email-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  overflow: hidden;
}

.footer-email-form input {
  flex: 1;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: white;
  font-size: 0.88rem;
  outline: none;
}

.footer-email-form button {
  padding: 11px 15px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
  transition: background 0.3s;
}

.footer-email-form button:hover {
  background: var(--accent-dark);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.footer-contact-list i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px;
}

.footer-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 100px 6%;
  color: var(--white);
  width: 100%;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.page-hero p,
.page-hero a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.page-hero a {
  text-decoration: none;
}

.page-hero span {
  color: var(--accent);
}

/* ── AOS ── */
[data-aos] {
  transition-duration: 800ms !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  .header-nav,
  .tech-expertise-dropdown {
    display: none !important;
  }

  section {
    padding: 70px 5%;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-container,
  .stats-container {
    flex-direction: column;
    gap: 50px;
  }

  .contact-split-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .stats-left h2 {
    font-size: 1.8rem;
  }

  .about-images,
  .stats-right {
    width: 100%;
  }

  .image-stagger.large {
    width: 100%;
    height: 380px;
  }

  .image-stagger-stack {
    display: none;
  }

  .slide-content h1 {
    font-size: 2.4rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .sj-grid {
    flex-direction: column;
    gap: 30px;
  }

  .sj-line {
    display: none;
  }

  .sj-step {
    margin-top: 0;
  }

  .sj-number {
    margin: 0 auto 20px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .request-info-tab {
    display: none !important;
  }

  section {
    padding: 60px 4%;
  }



  .slide-content h1 {
    font-size: 1.9rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-circle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .main-heading {
    font-size: 2rem;
  }

  .sj-header h2 {
    font-size: 2rem;
  }



  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-inner h2 {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .logo {
    height: 45px;
    width: 160px;
  }

  .brand-logo {
    height: 90px;
  }

  header {
    padding: 12px 4%;
  }

  header.sticky {
    padding: 8px 4%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-circle-grid {
    grid-template-columns: 1fr;
  }

  .slide-content h1 {
    font-size: 1.6rem;
  }
}

/* ── ZIGZAG PROCESS SECTION ── */
.process-section {
  background: #fafafa;
  padding: 90px 6%;
  width: 100%;
  overflow: hidden;
}

.process-section .section-head {
  text-align: center;
  margin-bottom: 70px;
}

.process-section .section-title {
  font-size: 2.6rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.process-section .section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Each row */
.process-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0 40px;
  margin-bottom: 0;
  position: relative;
}

/* Left text block */
.process-left {
  text-align: right;
  padding-right: 20px;
}

/* Right text block */
.process-right {
  text-align: left;
  padding-left: 20px;
}

/* Empty placeholder for opposite side */
.process-empty {
  display: block;
}

/* Center column: image + arrow */
.process-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Circular image */
.process-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 15px 45px rgba(2, 15, 20, 0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-img-wrap:hover {
  transform: scale(1.06);
  box-shadow: 0 22px 55px rgba(6, 182, 212, 0.2);
}

.process-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Curved arrow connector between steps */
.process-arrow {
  width: 80px;
  height: 70px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-arrow svg {
  width: 100%;
  height: 100%;
}

/* Step label: number + title */
.process-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* Right-aligned label (odd steps on left) */
.process-left .process-label {
  justify-content: flex-end;
}

/* Left-aligned label (even steps on right) */
.process-right .process-label {
  justify-content: flex-start;
}

.process-num {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

/* Alternating number colors */
.step-1 .process-num {
  color: var(--accent);
}

.step-2 .process-num {
  color: #0ea5e9;
}

.step-3 .process-num {
  color: #10b981;
}

.step-4 .process-num {
  color: #f59e0b;
}

.process-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.process-desc {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 280px;
}

/* Right side desc aligns left */
.process-right .process-desc {
  max-width: 280px;
}

/* Left side desc aligns right */
.process-left .process-desc {
  margin-left: auto;
}

/* CTA at bottom */
.process-cta {
  text-align: center;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .process-step {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .process-left,
  .process-right {
    text-align: center;
    padding: 0;
    order: 2;
  }

  .process-left .process-label,
  .process-right .process-label {
    justify-content: center;
  }

  .process-left .process-desc {
    margin: 0 auto;
  }

  .process-center {
    order: 1;
  }

  .process-empty {
    display: none;
  }

  .process-arrow {
    display: none;
  }
}

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */

/* ── HERO BANNER ── */
.about-hero {
  width: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(6, 182, 212, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(8, 145, 178, 0.2) 0%, transparent 55%),
    var(--dark);
  display: flex;
  flex-direction: column;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}

/* Dot pattern */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(6, 182, 212, 0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Glowing bottom border */
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-bottom: 70px;
}

.about-hero-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(6, 182, 212, 0.45);
  background: rgba(6, 182, 212, 0.08);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.about-hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.about-hero-content h1 span {
  color: var(--accent);
}

.about-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 38px;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.about-hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.about-hero-scroll:hover {
  color: var(--accent);
}

.scroll-circle {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: border-color 0.3s, background 0.3s;
}

.about-hero-scroll:hover .scroll-circle {
  border-color: var(--accent);
  background: rgba(6, 182, 212, 0.15);
}

/* Right side: floating stat badges */
.about-hero-badges {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-badge {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  border-radius: 16px 16px 0 0;
}

.hero-badge:hover {
  transform: translateY(-6px);
  background: rgba(6, 182, 212, 0.18);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.3);
}

.hb-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 10px;
}

.hb-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── STATS BAR ── */
.about-stats-bar {
  width: 100%;
  background: var(--dark);
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 6%;
  gap: 20px;
}

.about-stat {
  text-align: center;
  padding: 10px 0;
  border-right: 1px solid rgba(6, 182, 212, 0.15);
}

.about-stat:last-child {
  border-right: none;
}

.as-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.as-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── SECTION ACCENT BAR ── */
.section-accent-bar {
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ── ABOUT COMPANY / WHY CHOOSE ── */
.about-company-section {
  background: var(--white);
  padding: 90px 6%;
  width: 100%;
}

.why-choose-section {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 90px 6%;
  width: 100%;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-feature-grid--reverse {
  direction: rtl;
}

.about-feature-grid--reverse>* {
  direction: ltr;
}

.about-video-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(2, 15, 20, 0.12);
  border: 1px solid var(--light-mid);
}

.about-video-wrap video {
  width: 100%;
  display: block;
  object-fit: cover;
}

.video-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.about-feature-text h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-feature-text p {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* About list */
.about-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.about-list-icon {
  width: 46px;
  height: 46px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.about-list li:hover .about-list-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.about-list-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif !important;
}

.about-list-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Why choose list */
.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-choose-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.6;
}

.why-choose-list li i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.why-choose-list li strong {
  color: var(--dark);
}

/* ── VALUES SECTION ── */
.values-section {
  background: var(--white);
  padding: 90px 6%;
  width: 100%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--light-bg);
  border: 1px solid var(--light-mid);
  border-radius: 14px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 0 0 14px 14px;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.1);
  background: var(--white);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.value-icon-1 {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent);
}

.value-icon-2 {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.value-icon-3 {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.value-icon-4 {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── ABOUT SERVICES ── */
.about-services-section {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 90px 6%;
  width: 100%;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-service-card {
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 14px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.1);
}

.about-service-card:hover::before {
  transform: scaleX(1);
}

.about-service-icon {
  width: 56px;
  height: 56px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 22px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.about-service-card:hover .about-service-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.about-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.about-service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── FAQ INNER ── */
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ── RESPONSIVE ABOUT ── */
@media (max-width: 1024px) {
  .about-hero {
    padding: 100px 5% 60px;
  }

  .about-hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat {
    border-right: none;
    border-bottom: 1px solid rgba(6, 182, 212, 0.12);
    padding-bottom: 20px;
  }

  .about-stat:nth-child(3),
  .about-stat:last-child {
    border-bottom: none;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-feature-grid--reverse {
    direction: ltr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-hero-content h1 {
    font-size: 2.4rem;
  }

  .about-hero-badges {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .about-stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 24px 4%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ════════════════════════════════════════
   ABOUT — EXTRA SECTIONS
════════════════════════════════════════ */

/* ── JOURNEY TIMELINE ── */
.journey-section {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
    radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 100% 100%, 28px 28px;
  padding: 65px 6% !important;
  width: 100%;
  overflow: hidden;
}

.journey-section .section-title {
  color: var(--white);
}

.journey-section .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Horizontal track */
.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 20px;
}

/* Full-width horizontal line through icon centers */
.journey-line {
  position: absolute;
  top: 52px;
  /* aligns with center of icon circle */
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark), var(--accent));
  z-index: 1;
}

/* Each node */
.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}

/* Top: icon + vertical connector */
.jn-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

/* Icon circle */
.jn-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.1), 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  position: relative;
  z-index: 3;
}

.journey-node:hover .jn-icon {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.2), 0 12px 30px rgba(6, 182, 212, 0.4);
  transform: scale(1.12);
}

/* Short vertical line from icon down to year */
.jn-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--accent), rgba(6, 182, 212, 0.2));
}

/* Year badge */
.jn-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 16px;
  line-height: 1;
}

/* Card */
.jn-card {
  background: var(--dark-card);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: 14px;
  padding: 22px 18px;
  width: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.jn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.journey-node:hover .jn-card {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.2);
  transform: translateY(-4px);
}

.journey-node:hover .jn-card::before {
  transform: scaleX(1);
}

.jn-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.jn-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.jn-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

/* Responsive — stack vertically on mobile */
@media (max-width: 1024px) {
  .journey-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .journey-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .journey-track {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .journey-track {
    grid-template-columns: 1fr;
  }
}

/* ── TEAM SECTION ── */
.team-section {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 90px 6%;
  width: 100%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-mid);
  box-shadow: 0 6px 24px rgba(2, 15, 20, 0.07);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.12);
}

.team-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  display: block;
}

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

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 182, 212, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-socials {
  display: flex;
  gap: 12px;
}

.team-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.team-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.team-info {
  padding: 22px 24px 26px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}

.team-card:hover .team-info {
  border-top-color: var(--accent);
}

.team-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-info span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── NUMBERS SECTION ── */
.numbers-section {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 55%),
    radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 100% 100%, 28px 28px;
  padding: 90px 6%;
  width: 100%;
}

.numbers-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.numbers-text .section-accent-bar {
  margin-bottom: 20px;
}

.numbers-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.numbers-text h2 span {
  color: var(--accent);
}

.numbers-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 380px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.number-item {
  background: var(--dark-card);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.number-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.number-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.25);
}

.number-item:hover::after {
  transform: scaleX(1);
}

.number-item i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
  opacity: 0.8;
}

.ni-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.ni-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .numbers-text p {
    max-width: 100%;
  }

  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-timeline::before {
    left: 20px;
  }

  .journey-item {
    grid-template-columns: 40px 1fr;
  }

  .journey-item .journey-year {
    display: none;
  }

  .journey-item .journey-dot {
    order: 1;
    margin: 0;
  }

  .journey-item .journey-card {
    order: 2;
    padding-left: 28px;
    padding-right: 0;
    text-align: left;
  }

  .journey-item--right .journey-year {
    display: none;
  }

  .journey-item--right .journey-dot {
    order: 1;
  }

  .journey-item--right .journey-card {
    order: 2;
    padding-right: 0;
    padding-left: 28px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ── GLOBAL SPACING TIGHTENING ── */
.about-us-premium {
  padding: 70px 6% !important;
}

.about-company-section {
  padding: 65px 6% !important;
}

.why-choose-section {
  padding: 65px 6% !important;
}

.values-section {
  padding: 65px 6% !important;
}

.about-services-section {
  padding: 65px 6% !important;
}

.journey-section {
  padding: 65px 6% !important;
}

.team-section {
  padding: 65px 6% !important;
}

.numbers-section {
  padding: 65px 6% !important;
}

.testimonial-section {
  padding: 65px 6% !important;
}

.cta-banner-section {
  padding: 65px 6% !important;
}

.faq-section {
  padding: 65px 6% !important;
}

.stats-counter-section {
  padding: 55px 6% !important;
}

.services-dark {
  padding: 60px 6% !important;
}

.success-journey-section {
  padding: 60px 6% !important;
}

.portfolio-section {
  padding: 60px 6% !important;
}

.different-section {
  padding: 60px 6% !important;
}

.latest-blog-section {
  padding: 60px 6% !important;
}

.industry-section {
  padding: 60px 6% !important;
}

.process-section {
  padding: 65px 6% !important;
}

.footer-modern {
  padding: 65px 6% 35px !important;
}

/* Tighten section heads */
.section-head {
  margin-bottom: 40px !important;
}

.process-section .section-head {
  margin-bottom: 50px !important;
}

.sj-header {
  margin-bottom: 30px !important;
}

.diff-header {
  margin-bottom: 35px !important;
}

/* Tighten about hero bottom margin */
.about-hero-content {
  margin-bottom: 50px !important;
}

/* Tighten about hero padding */
.about-hero {
  padding: 100px 6% 65px !important;
}

/* Tighten stats bar */
.about-stats-bar {
  padding: 24px 6% !important;
}

/* Responsive tightening */
@media (max-width: 1024px) {
  section {
    padding: 50px 5% !important;
  }

  .about-hero,
  .pf2-hero,
  .contact-hero,
  .service-hero,
  .page-hero,
  .careers-hero {
    padding: 120px 5% 50px !important;
  }

  .footer-modern {
    padding: 50px 5% 28px !important;
  }
}

@media (max-width: 768px) {
  section {
    padding: 44px 4% !important;
  }

  .about-hero,
  .pf2-hero,
  .contact-hero,
  .service-hero,
  .page-hero,
  .careers-hero {
    padding: 110px 4% 44px !important;
  }
}

/* ════════════════════════════════════════
   CAREERS PAGE
════════════════════════════════════════ */

/* ── HERO ── */
.careers-hero {
  width: 100%;
  min-height: 88vh;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(6, 182, 212, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 90% 20%, rgba(8, 145, 178, 0.18) 0%, transparent 55%),
    radial-gradient(rgba(6, 182, 212, 0.05) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 100% 100%, 100% 100%, 28px 28px, 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 110px 6% 80px;
  position: relative;
  overflow: hidden;
}

.careers-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.careers-hero-content {
  position: relative;
  z-index: 2;
}

.careers-hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.careers-hero-content h1 span {
  color: var(--accent);
}

.careers-hero-content p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.careers-hero-img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.careers-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.careers-hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(2, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.careers-hero-badge i {
  font-size: 1.6rem;
  color: var(--accent);
}

.careers-hero-badge strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.careers-hero-badge span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── PERKS ── */
.careers-perks-section {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 65px 6%;
  width: 100%;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.perk-card {
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 14px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.perk-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.perk-card:hover {
  transform: translateY(-7px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 18px 45px rgba(6, 182, 212, 0.1);
}

.perk-card:hover::after {
  transform: scaleX(1);
}

.perk-icon {
  width: 52px;
  height: 52px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}

.perk-card:hover .perk-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.perk-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.perk-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ── CULTURE ── */
.careers-culture-section {
  background: var(--white);
  padding: 65px 6%;
  width: 100%;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.culture-text .section-accent-bar {
  margin-bottom: 18px;
}

.culture-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.culture-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.culture-stats {
  display: flex;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--light-mid);
}

.culture-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--light-mid);
}

.culture-stat:first-child {
  padding-left: 0;
}

.culture-stat:last-child {
  border-right: none;
}

.cs-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.cs-num i {
  font-size: 1rem;
  margin-left: 2px;
  color: #f5c518;
}

.cs-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.culture-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
  height: 414px;
}

.culture-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--light-mid);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.culture-img-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 40px rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
}

.culture-img-grid img:first-child {
  grid-row: span 2;
  height: 100%;
}

/* ── JOBS ── */
.careers-jobs-section {
  background: var(--dark);
  background-image: radial-gradient(rgba(6, 182, 212, 0.05) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  padding: 65px 6%;
  width: 100%;
}

.careers-jobs-section .section-title {
  color: var(--white);
}

.careers-jobs-section .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Filter tabs */
.job-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.job-filter {
  padding: 9px 24px;
  border-radius: 50px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Outfit', sans-serif;
}

.job-filter:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.job-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Jobs grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.job-card {
  background: var(--dark-card);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.job-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.22);
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-icon {
  width: 46px;
  height: 46px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
}

.job-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}

.job-badge--full {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.job-badge--remote {
  background: rgba(14, 165, 233, 0.12);
  color: #0ea5e9;
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.job-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-meta span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-meta i {
  color: var(--accent);
  font-size: 0.75rem;
}

.job-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-skills span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 3px 10px;
  border-radius: 50px;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  align-self: flex-start;
  margin-top: auto;
}

.job-apply-btn:hover {
  background: var(--accent-dark);
  transform: translateX(4px);
}

/* ── HIRING PROCESS ── */
.hiring-process-section {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 65px 6%;
  width: 100%;
}

.hiring-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.hiring-step {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.hs-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.hs-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid rgba(6, 182, 212, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.1);
  transition: var(--transition);
}

.hiring-step:hover .hs-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
  transform: scale(1.1);
}

.hiring-step h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.hiring-step p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

.hiring-arrow {
  color: rgba(6, 182, 212, 0.35);
  font-size: 1.2rem;
  padding-top: 22px;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .careers-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 90px 5% 60px;
  }

  .careers-hero-img {
    max-height: 320px;
  }

  .careers-hero-img img {
    height: 320px;
  }

  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .culture-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .culture-img-grid {
    height: 300px;
  }

  .culture-img-grid img:first-child {
    grid-row: span 2;
  }

  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hiring-steps {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .hiring-arrow {
    display: none;
  }

  .hiring-step {
    max-width: 160px;
  }
}

@media (max-width: 640px) {
  .careers-hero-content h1 {
    font-size: 2.4rem;
  }

  .perks-grid {
    grid-template-columns: 1fr;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .culture-stats {
    gap: 20px;
  }

  .culture-img-grid img:first-child {
    height: 180px;
  }

  .culture-img-grid img {
    height: 140px;
  }
}

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */

/* ── HERO ── */
.contact-hero {
  width: 100%;
  min-height: 52vh;
  background:
    radial-gradient(ellipse 70% 80% at 15% 50%, rgba(6, 182, 212, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(8, 145, 178, 0.2) 0%, transparent 55%),
    radial-gradient(rgba(6, 182, 212, 0.05) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 100% 100%, 100% 100%, 28px 28px, 100%;
  display: flex;
  align-items: center;
  padding: 110px 6% 70px;
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.contact-hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-hero-content h1 span {
  color: var(--accent);
}

.contact-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

/* ── INFO STRIP ── */
.contact-info-strip {
  width: 100%;
  background: var(--dark-mid);
  border-bottom: 1px solid rgba(6, 182, 212, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 6%;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 32px 24px;
  border-right: 1px solid rgba(6, 182, 212, 0.12);
  transition: background 0.3s;
}

.contact-info-card:last-child {
  border-right: none;
}

.contact-info-card:hover {
  background: rgba(6, 182, 212, 0.06);
}

.cic-icon {
  width: 46px;
  height: 46px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s;
}

.contact-info-card:hover .cic-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.cic-body h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif !important;
}

.cic-body a,
.cic-body span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s;
}

.cic-body a:hover {
  color: var(--accent);
}

/* ── MAIN SECTION ── */
.contact-main-section {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 65px 6%;
  width: 100%;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* ── FORM ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 10px 40px rgba(2, 15, 20, 0.08);
  border: 1px solid var(--light-mid);
}

.contact-form-wrap .section-accent-bar {
  margin-bottom: 16px;
}

.contact-form-wrap h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-form-wrap>p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cf-group label span {
  color: var(--accent);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light-mid);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.cf-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Budget radio options */
.budget-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.budget-opt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid var(--light-mid);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
  width: auto;
}

.budget-opt:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.budget-opt input[type="radio"] {
  accent-color: var(--accent);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.budget-opt:has(input:checked) {
  border-color: var(--accent);
  background: rgba(6, 182, 212, 0.06);
  color: var(--accent-dark);
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  align-self: flex-start;
}

.contact-submit-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.35);
}

/* ── RIGHT COLUMN ── */
.contact-right-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Map */
.contact-map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-mid);
  box-shadow: 0 8px 25px rgba(2, 15, 20, 0.08);
}

.contact-map-embed iframe {
  display: block;
}

/* Hours */
.contact-hours-card {
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 4px 16px rgba(2, 15, 20, 0.06);
}

.contact-hours-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif !important;
}

.contact-hours-card h4 i {
  color: var(--accent);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-light);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-mid);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-time {
  font-weight: 700;
  color: var(--dark);
}

.hours-closed {
  font-weight: 700;
  color: #ef4444;
}

/* Social */
.contact-social-card {
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 4px 16px rgba(2, 15, 20, 0.06);
}

.contact-social-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif !important;
}

.contact-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cs-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.25s;
  border: 1.5px solid var(--light-mid);
  color: var(--text-light);
}

.cs-link:hover {
  transform: translateY(-2px);
}

.cs-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
}

.cs-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #e6683c;
  color: white;
}

.cs-li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: white;
}

.cs-tw:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: white;
}

/* Quick stats */
.contact-quick-stats {
  background: var(--dark);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cqs-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.cqs-item i {
  color: var(--accent);
  font-size: 1rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.cqs-item strong {
  color: var(--white);
}

/* ── FAQ STRIP ── */
.contact-faq-section {
  background: var(--white);
  padding: 65px 6%;
  width: 100%;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cfaq-card {
  background: var(--light-bg);
  border: 1px solid var(--light-mid);
  border-radius: 14px;
  padding: 28px 24px;
  transition: var(--transition);
}

.cfaq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.1);
  background: var(--white);
}

.cfaq-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.cfaq-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif !important;
}

.cfaq-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-info-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-card:nth-child(2) {
    border-right: none;
  }

  .contact-info-card:nth-child(3) {
    border-top: 1px solid rgba(6, 182, 212, 0.12);
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero-content h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 640px) {
  .contact-info-strip {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    border-right: none;
    border-bottom: 1px solid rgba(6, 182, 212, 0.12);
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 22px;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }
}

/* ── HERO FULL HEIGHT FIX ── */
.swiper.hero-slider {
  height: 100vh !important;
  min-height: 600px;
  margin: 0 !important;
  padding: 0 !important;
}

.swiper.hero-slider .swiper-wrapper,
.swiper.hero-slider .swiper-slide,
.swiper.hero-slider .slide {
  height: 100% !important;
  min-height: 600px;
}

/* Remove any gap between header and slider */
header+.swiper.hero-slider,
header+div,
header~.swiper {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .swiper.hero-slider {
    height: 85vh !important;
    /* Allow browser to handle vertical scrolling */
    touch-action: pan-y;
  }

  .swiper.hero-slider .swiper-wrapper {
    touch-action: pan-y;
  }

  .slide-content {
    width: 92%;
    padding: 0 4%;
    margin-top: 40px; /* Offset for header */
  }

  .slide-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .slide-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .cta-pill {
    padding: 12px 28px;
    font-size: 0.85rem;
  }
}

/* ════════════════════════════════════════
   PORTFOLIO PAGE
════════════════════════════════════════ */

/* ── HERO ── */
.portfolio-hero {
  width: 100%;
  background:
    radial-gradient(ellipse 70% 70% at 10% 50%, rgba(6, 182, 212, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(8, 145, 178, 0.18) 0%, transparent 55%),
    radial-gradient(rgba(6, 182, 212, 0.05) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 100% 100%, 100% 100%, 28px 28px, 100%;
  padding: 110px 6% 70px;
  position: relative;
  overflow: hidden;
}

.portfolio-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.portfolio-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-bottom: 55px;
}

.portfolio-hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.portfolio-hero-content h1 span {
  color: var(--accent);
}

.portfolio-hero-content p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.portfolio-hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 16px;
  padding: 24px 36px;
  width: fit-content;
}

.phs-item {
  text-align: center;
  padding: 0 32px;
}

.phs-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.phs-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.phs-divider {
  width: 1px;
  height: 40px;
  background: rgba(6, 182, 212, 0.25);
  flex-shrink: 0;
}

/* ── PORTFOLIO SECTION ── */
.portfolio-page-section {
  background: var(--dark-mid);
  background-image: radial-gradient(rgba(6, 182, 212, 0.05) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  padding: 65px 6%;
  width: 100%;
}

/* Filter tabs */
.pf-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  justify-content: center;
}

.pf-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Outfit', sans-serif;
}

.pf-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pf-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Grid */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Card */
.pf-card {
  background: var(--dark-card);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  opacity: 1;
}

.pf-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 22px 55px rgba(6, 182, 212, 0.25);
}

/* Image area */
.pf-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.pf-img-bg {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #051C24;
  transition: transform 0.5s ease;
}

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

/* Overlay on hover */
.pf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 20, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.pf-card:hover .pf-overlay {
  opacity: 1;
}

.pf-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}

.pf-visit-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

/* Category badge */
.pf-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(6, 182, 212, 0.85);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* Card body */
.pf-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pf-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pf-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pf-year {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
}

.pf-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.pf-card-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.pf-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── INDUSTRIES ── */
.pf-industries-section {
  background: var(--white);
  padding: 65px 6%;
  width: 100%;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.industry-pill {
  background: var(--light-bg);
  border: 1px solid var(--light-mid);
  border-radius: 12px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.industry-pill:hover {
  background: var(--white);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.1);
}

.industry-pill i {
  font-size: 1.5rem;
  color: var(--accent);
}

.industry-pill span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ── PROCESS STRIP ── */
.pf-process-strip {
  background: var(--dark);
  background-image: radial-gradient(rgba(6, 182, 212, 0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 55px 6%;
  width: 100%;
}

.pf-process-inner {
  text-align: center;
}

.pf-process-inner h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 36px;
}

.pf-process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pf-ps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--dark-card);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 18px 28px;
  transition: var(--transition);
  min-width: 100px;
}

.pf-ps:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.2);
}

.pf-ps-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.pf-ps-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pf-ps-arrow {
  color: rgba(6, 182, 212, 0.4);
  font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .portfolio-hero-stats {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .phs-item {
    padding: 12px 20px;
  }

  .phs-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-hero-content h1 {
    font-size: 2.2rem;
  }

  .pf-process-steps {
    gap: 10px;
  }

  .pf-ps {
    padding: 14px 18px;
    min-width: 80px;
  }
}

/* ════════════════════════════════════════
   PORTFOLIO PAGE v2
════════════════════════════════════════ */

/* ── HERO ── */
.pf2-hero {
  width: 100%;
  background:
    radial-gradient(ellipse 65% 70% at 5% 50%, rgba(6, 182, 212, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 95% 15%, rgba(8, 145, 178, 0.2) 0%, transparent 55%),
    radial-gradient(rgba(6, 182, 212, 0.05) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 100% 100%, 100% 100%, 28px 28px, 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 110px 6% 80px;
  position: relative;
  overflow: hidden;
}

.pf2-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.pf2-hero-text {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.pf2-hero-text h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin: 18px 0 20px;
}

.pf2-hero-text h1 span {
  color: var(--accent);
}

.pf2-hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.pf2-hero-nums {
  display: flex;
  gap: 0;
  justify-content: center;
  padding-top: 28px;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.pf2-num {
  padding: 0 36px;
  border-right: 1px solid rgba(6, 182, 212, 0.2);
}

.pf2-num:last-child {
  border-right: none;
}

.pf2-num strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.pf2-num span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Mosaic */
.pf2-hero-mosaic {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  height: 420px;
  align-items: stretch;
}

.pf2-mosaic-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  background: var(--dark-card);
}

.pf2-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}

.pf2-mosaic-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.pf2-m-large {
  width: 55%;
  height: 100%;
}

.pf2-mosaic-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pf2-m-small {
  flex: 1;
  width: 100%;
}

.pf2-mosaic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(2, 15, 20, 0.95) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 28px 14px 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── MAIN SECTION ── */
.pf2-main {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 65px 6%;
  width: 100%;
}

/* Filters */
.pf2-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.pf2-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--light-mid);
  background: var(--white);
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 2px 8px rgba(2, 15, 20, 0.05);
}

.pf2-filter i {
  font-size: 0.82rem;
}

.pf2-filter:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pf2-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

/* Grid */
.pf2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.pf2-card {
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(2, 15, 20, 0.06);
}

.pf2-card:hover {
  transform: translateY(-10px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 24px 60px rgba(6, 182, 212, 0.14);
}

/* Remove featured spanning — uniform grid */
.pf2-card--featured {
  grid-column: span 1;
  flex-direction: column;
}

.pf2-card--featured .pf2-card-img {
  width: 100%;
  height: 220px;
}

/* Image */
.pf2-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--light-bg);
  flex-shrink: 0;
}

.pf2-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
  padding: 12px;
}

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

/* Overlay */
.pf2-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 182, 212, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.pf2-card:hover .pf2-card-overlay {
  opacity: 1;
}

.pf2-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--accent-dark);
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.pf2-live-btn:hover {
  background: var(--dark);
  color: var(--white);
  transform: scale(1.05);
}

/* Badges */
.pf2-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
}

.pf2-featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f59e0b;
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Card info */
.pf2-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pf2-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pf2-card-type {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pf2-card-year {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--light-bg);
  padding: 3px 10px;
  border-radius: 50px;
}

.pf2-card-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.pf2-card-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.pf2-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pf2-card-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: rgba(6, 182, 212, 0.07);
  border: 1px solid rgba(6, 182, 212, 0.18);
  padding: 3px 10px;
  border-radius: 50px;
}

.pf2-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  transition: gap 0.2s, color 0.2s;
}

.pf2-card-link:hover {
  gap: 14px;
  color: var(--dark);
}

/* ── INDUSTRIES ── */
.pf2-industries {
  background: var(--dark);
  background-image: radial-gradient(rgba(6, 182, 212, 0.05) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 65px 6%;
  width: 100%;
}

.pf2-industries .section-title {
  color: var(--white);
}

.pf2-industries .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.pf2-ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.pf2-ind-item {
  background: var(--dark-card);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 14px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.pf2-ind-item:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(6, 182, 212, 0.2);
  background: rgba(6, 182, 212, 0.1);
}

.pf2-ind-icon {
  width: 48px;
  height: 48px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  transition: background 0.3s;
}

.pf2-ind-item:hover .pf2-ind-icon {
  background: var(--accent);
  color: var(--white);
}

.pf2-ind-item span {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ── PULL QUOTE ── */
.pf2-quote-section {
  background: var(--light-bg);
  padding: 65px 6%;
  width: 100%;
}

.pf2-quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pf2-quote-icon {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
  display: block;
}

.pf2-quote-inner blockquote {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.6;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}

.pf2-quote-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.pf2-qa-avatar {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.pf2-quote-author strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
}

.pf2-quote-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pf2-hero {
    padding: 80px 5% 60px;
  }

  .pf2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf2-ind-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .pf2-hero-text h1 {
    font-size: 2.4rem;
  }

  .pf2-grid {
    grid-template-columns: 1fr;
  }

  .pf2-num {
    padding: 0 18px;
  }

  .pf2-ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf2-quote-inner blockquote {
    font-size: 1.2rem;
  }
}

/* ════════════════════════════════════════
   FAQ PAGE
════════════════════════════════════════ */

/* ── HERO ── */
.faq-hero {
  width: 100%;
  background:
    radial-gradient(ellipse 70% 80% at 15% 50%, rgba(6, 182, 212, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(8, 145, 178, 0.18) 0%, transparent 55%),
    radial-gradient(rgba(6, 182, 212, 0.05) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 100% 100%, 100% 100%, 28px 28px, 100%;
  padding: 100px 6% 65px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.faq-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto 40px;
}

.faq-hero-content h1 {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 16px 0 18px;
}

.faq-hero-content h1 span {
  color: var(--accent);
}

.faq-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Search */
.faq-search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.faq-search-wrap i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1rem;
}

.faq-search-wrap input {
  width: 100%;
  padding: 15px 20px 15px 48px;
  border-radius: 50px;
  border: 1.5px solid rgba(6, 182, 212, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  backdrop-filter: blur(8px);
}

.faq-search-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.faq-search-wrap input:focus {
  border-color: var(--accent);
  background: rgba(6, 182, 212, 0.1);
}

/* Hero pills */
.faq-hero-pills {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.fhp-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: rgba(255, 255, 255, 0.75);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.fhp-item i {
  color: var(--accent);
}

/* ── CATEGORY BAR ── */
.faq-cat-bar {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--light-mid);
  display: flex;
  gap: 6px;
  padding: 16px 6%;
  flex-wrap: wrap;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(2, 15, 20, 0.06);
}

.faq-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--light-mid);
  background: transparent;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
  font-family: 'Outfit', sans-serif;
}

.faq-cat-btn i {
  font-size: 0.78rem;
}

.faq-cat-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.faq-cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3);
}

/* ── MAIN SECTION ── */
.faq-main-section {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.03) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 60px 6%;
  width: 100%;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: flex-start;
}

/* FAQ list */
.faq-list-col {
  min-width: 0;
}

.faq-list {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(2, 15, 20, 0.07);
  border: 1px solid var(--light-mid);
}

.faq-item {
  border-bottom: 1px solid var(--light-mid);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  gap: 20px;
  transition: background 0.2s, color 0.2s;
  font-family: 'Playfair Display', serif;
  line-height: 1.4;
}

.faq-question:hover {
  background: var(--light-bg);
  color: var(--accent-dark);
}

.faq-item.open .faq-question {
  background: rgba(6, 182, 212, 0.04);
  color: var(--accent-dark);
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--light-bg);
  border: 1.5px solid var(--light-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  flex-shrink: 0;
  transition: all 0.25s;
  font-style: normal;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin: 0;
  border-left: 3px solid var(--accent);
  margin-left: 28px;
  padding-left: 20px;
}

/* No results */
.faq-no-results {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: var(--text-light);
  gap: 14px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--light-mid);
}

.faq-no-results i {
  font-size: 2.5rem;
  color: var(--light-mid);
}

.faq-no-results p {
  font-size: 1rem;
  margin: 0;
}

/* ── SIDEBAR ── */
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 130px;
}

.faq-sidebar-card {
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(2, 15, 20, 0.06);
}

.faq-sidebar-card--dark {
  background: var(--dark);
  border-color: rgba(6, 182, 212, 0.2);
}

.fsc-icon {
  width: 52px;
  height: 52px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.faq-sidebar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif !important;
}

.faq-sidebar-card--dark h3 {
  color: var(--white);
}

.faq-sidebar-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.fsc-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.fsc-contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.fsc-contact-list a i {
  color: var(--accent);
  width: 14px;
}

.fsc-contact-list a:hover {
  color: var(--accent);
}

.fsc-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.fsc-topics span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: rgba(6, 182, 212, 0.07);
  border: 1px solid rgba(6, 182, 212, 0.18);
  padding: 5px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.fsc-topics span:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-cat-bar {
    top: 60px;
  }
}

@media (max-width: 640px) {
  .faq-hero-content h1 {
    font-size: 2.2rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.92rem;
  }

  .faq-answer p {
    margin-left: 20px;
    padding: 0 20px 18px 16px;
  }

  .faq-cat-bar {
    padding: 12px 4%;
    gap: 6px;
  }

  .faq-cat-btn {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}

/* ════════════════════════════════════════
   PRIVACY POLICY PAGE
════════════════════════════════════════ */

.policy-hero {
  width: 100%;
  background:
    radial-gradient(ellipse 60% 70% at 10% 50%, rgba(6, 182, 212, 0.22) 0%, transparent 55%),
    radial-gradient(rgba(6, 182, 212, 0.05) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 100% 100%, 28px 28px, 100%;
  padding: 100px 6% 65px;
  position: relative;
  overflow: hidden;
}

.policy-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.policy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.policy-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 16px 0 12px;
}

.policy-hero-content h1 span {
  color: var(--accent);
}

.policy-hero-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.policy-hero-content p strong {
  color: rgba(255, 255, 255, 0.8);
}

.policy-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.policy-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.22);
  padding: 7px 16px;
  border-radius: 50px;
}

.policy-hero-meta i {
  color: var(--accent);
}

/* ── MAIN ── */
.policy-main {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.03) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 60px 6%;
  width: 100%;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* TOC */
.policy-toc {
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 16px;
  padding: 24px 20px;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(2, 15, 20, 0.06);
}

.policy-toc h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif !important;
}

.policy-toc h4 i {
  color: var(--accent);
}

.policy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-toc ul li a {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  transition: all 0.2s;
  line-height: 1.4;
}

.policy-toc ul li a:hover {
  background: var(--light-bg);
  color: var(--accent-dark);
  padding-left: 14px;
}

/* Body */
.policy-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.policy-intro-card {
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.policy-intro-card i {
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-intro-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.policy-intro-card p strong {
  color: var(--dark);
}

/* Section */
.policy-section {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--light-mid);
}

.policy-section:last-child {
  border-bottom: none;
}

.ps-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  height: fit-content;
  flex-shrink: 0;
  letter-spacing: 1px;
  font-family: 'Outfit', sans-serif;
}

.ps-content {
  flex: 1;
  min-width: 0;
}

.ps-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.ps-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.ps-content p:last-child {
  margin-bottom: 0;
}

/* Info cards */
.policy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.policy-card {
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.policy-card:hover {
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.08);
}

.policy-card i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.policy-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif !important;
}

.policy-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* List */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.6;
}

.policy-list li i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.policy-list li strong {
  color: var(--dark);
}

/* Highlight box */
.policy-highlight {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 16px;
}

.policy-highlight i {
  color: #ef4444;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-highlight p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.policy-highlight p strong {
  color: #ef4444;
}

/* Table */
.policy-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 10px;
  border: 1px solid var(--light-mid);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.policy-table thead {
  background: var(--dark);
}

.policy-table thead th {
  padding: 14px 18px;
  text-align: left;
  color: var(--white);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-table tbody tr {
  border-bottom: 1px solid var(--light-mid);
  background: var(--white);
  transition: background 0.2s;
}

.policy-table tbody tr:last-child {
  border-bottom: none;
}

.policy-table tbody tr:hover {
  background: var(--light-bg);
}

.policy-table tbody td {
  padding: 13px 18px;
  color: var(--text-light);
  line-height: 1.5;
}

.policy-table tbody td:first-child {
  font-weight: 700;
  color: var(--dark);
}

/* Security grid */
.policy-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.psg-item {
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}

.psg-item:hover {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.04);
}

.psg-item i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Contact grid */
.policy-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.pcg-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 12px;
  padding: 18px 20px;
}

.pcg-item i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pcg-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
}

.pcg-item span,
.pcg-item a {
  font-size: 0.88rem;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.5;
}

.pcg-item a:hover {
  color: var(--accent);
}

.policy-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.policy-link:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
  }

  .policy-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .policy-hero-content h1 {
    font-size: 2.2rem;
  }

  .policy-cards {
    grid-template-columns: 1fr;
  }

  .policy-security-grid {
    grid-template-columns: 1fr 1fr;
  }

  .policy-section {
    flex-direction: column;
    gap: 12px;
  }

  .ps-num {
    align-self: flex-start;
  }
}

/* ── POLICY STEPS (Refund Process) ── */
.policy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0;
  border: 1px solid var(--light-mid);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.policy-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--light-mid);
  transition: background 0.2s;
}

.policy-step:last-child {
  border-bottom: none;
}

.policy-step:hover {
  background: var(--light-bg);
}

.pstep-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

.policy-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  font-family: 'Outfit', sans-serif !important;
}

.policy-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════
   SERVICE PAGES (PHP, Laravel, etc.)
════════════════════════════════════════ */

/* ── HERO ── */
.service-hero {
  width: 100%;
  min-height: 88vh;
  background:
    radial-gradient(ellipse 65% 70% at 5% 50%, rgba(6, 182, 212, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 95% 20%, rgba(8, 145, 178, 0.2) 0%, transparent 55%),
    radial-gradient(rgba(6, 182, 212, 0.05) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 100% 100%, 100% 100%, 28px 28px, 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 110px 6% 80px;
  position: relative;
  overflow: hidden;
}

.service-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.service-hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin: 16px 0 20px;
}

.service-hero-content h1 span {
  color: var(--accent);
}

.service-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.service-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.service-hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--dark-card);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 16px;
  padding: 20px 28px;
  width: fit-content;
}

.service-tech-badge i {
  font-size: 3rem;
  color: var(--accent);
}

.service-tech-badge strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.service-tech-badge span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-hero-stats {
  display: flex;
  gap: 0;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 14px;
  overflow: hidden;
}

.shs-item {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(6, 182, 212, 0.15);
}

.shs-item:last-child {
  border-right: none;
}

.shs-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.shs-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── OFFERS ── */
.service-offers-section {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 65px 6%;
  width: 100%;
}

.service-offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-offer-card {
  background: var(--white);
  border: 1px solid var(--light-mid);
  border-radius: 14px;
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-offer-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 18px 45px rgba(6, 182, 212, 0.1);
}

.service-offer-card:hover::after {
  transform: scaleX(1);
}

.soc-icon {
  width: 50px;
  height: 50px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 18px;
  transition: background 0.3s, color 0.3s;
}

.service-offer-card:hover .soc-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.service-offer-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-offer-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ── WHY SECTION ── */
.service-why-section {
  background: var(--white);
  padding: 65px 6%;
  width: 100%;
}

.service-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-why-text .section-accent-bar {
  margin-bottom: 18px;
}

.service-why-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.25;
}

.service-why-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Tech stack grid */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tsg-item {
  background: var(--light-bg);
  border: 1px solid var(--light-mid);
  border-radius: 12px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: var(--transition);
}

.tsg-item:hover {
  background: var(--white);
  border-color: rgba(6, 182, 212, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.1);
}

.tsg-item i {
  font-size: 1.8rem;
  color: var(--accent);
}

.tsg-item span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── PROCESS ── */
.service-process-section {
  background: var(--dark);
  background-image: radial-gradient(rgba(6, 182, 212, 0.06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  padding: 65px 6%;
  width: 100%;
}

.service-process-section .section-title {
  color: var(--white);
}

.service-process-section .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.service-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sps-item {
  background: var(--dark-card);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 14px;
  padding: 30px 26px;
  position: relative;
  transition: var(--transition);
}

.sps-item:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.2);
}

.sps-icon {
  width: 48px;
  height: 48px;
  background: rgba(6, 182, 212, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.sps-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(6, 182, 212, 0.4);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.sps-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.sps-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

/* ── INDUSTRIES ── */
.service-industries-section {
  background: var(--light-bg);
  background-image: radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 65px 6%;
  width: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .service-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-stack-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .service-hero-content h1 {
    font-size: 2.4rem;
  }

  .service-offers-grid {
    grid-template-columns: 1fr;
  }

  .service-process-steps {
    grid-template-columns: 1fr;
  }

  .tech-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-hero-stats {
    flex-direction: column;
  }
}

/* ── SERVICE PAGE COLOR OVERRIDES ── */
.service-offers-section {
  background: var(--dark-mid) !important;
  background-image: radial-gradient(rgba(6, 182, 212, 0.06) 1.5px, transparent 1.5px) !important;
  background-size: 26px 26px !important;
}

.service-offers-section .section-title {
  color: var(--white) !important;
}

.service-offers-section .section-sub {
  color: rgba(255, 255, 255, 0.55) !important;
}

.service-offer-card {
  background: var(--dark-card) !important;
  border-color: rgba(6, 182, 212, 0.15) !important;
}

.service-offer-card:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 18px 45px rgba(6, 182, 212, 0.2) !important;
}

.service-offer-card h3 {
  color: var(--white) !important;
}

.service-offer-card p {
  color: rgba(255, 255, 255, 0.55) !important;
}

.soc-icon {
  background: rgba(6, 182, 212, 0.12) !important;
  border-color: rgba(6, 182, 212, 0.25) !important;
}

.service-why-section {
  background: var(--light-bg) !important;
  background-image: radial-gradient(rgba(6, 182, 212, 0.04) 1.5px, transparent 1.5px) !important;
  background-size: 26px 26px !important;
}

.service-industries-section {
  background: var(--white) !important;
}

.service-industries-section .section-title {
  color: var(--dark) !important;
}

.service-industries-section .section-sub {
  color: var(--text) !important;
}

/* Light theme for industries cards on service pages */
.service-industries-section .pf2-ind-item {
  background: var(--white) !important;
  border: 1px solid var(--light-mid) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

.service-industries-section .pf2-ind-item span {
  color: var(--dark) !important;
}

.service-industries-section .pf2-ind-item .pf2-ind-icon {
  background: var(--light-bg) !important;
  color: var(--accent) !important;
}

.service-industries-section .pf2-ind-item:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1) !important;
}

.service-industries-section .pf2-ind-item:hover span {
  color: var(--accent) !important;
}

.service-industries-section .pf2-ind-item:hover .pf2-ind-icon {
  background: var(--accent) !important;
  color: var(--white) !important;
}

/* FAQ on service pages — light bg */
.faq-section[style*="background:var(--white)"],
.service-faq {
  background: var(--light-bg) !important;
}