/* --- Fonts Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Custom Variables & Tokens --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Colors */
  --bg-primary: #0A0A0C;
  --bg-secondary: #121215;
  --bg-dark-shade-2: #161619;
  --bg-dark-shade-5: #1c1c21;
  --bg-dark-shade-7: #101012;
  --bg-dark-shade-8: #18181c;
  --bg-dark-shade-11: #131316;
  --brand-color: #F76031;
  --brand-hover: #e54b1c;
  --brand-yellow: #E7D07E;
  --bg-card: var(--bg-dark-shade-2);
  --bg-body: var(--bg-secondary);
  --accent: var(--brand-color);
  --text-white: #FFFFFF;
  --text-grey: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.6);

  /* Sticky notes colors */
  --theme-purple: #9E6AE2;
  --theme-pink: #DA6C80;
  --theme-yellow: #E3BF3E;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-elastic: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Base Resets --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-primary);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

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

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

/* --- Header & Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition-smooth);
}

header.scrolled .header-container {
  height: 70px;
}

.brand-logo {
  height: 35px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 28px;
  }
}

.menu-toggle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-toggle-btn:hover {
  background-color: var(--brand-color);
  border-color: var(--brand-color);
  transform: scale(1.05);
}

/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.close-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
  background-color: var(--brand-color);
  border-color: var(--brand-color);
  transform: scale(1.05);
}

.nav-overlay-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 1.5rem;
}

.nav-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  width: 100%;
  gap: 4rem;
}

.nav-menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-menu-list li a {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  opacity: 0.7;
  display: inline-block;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.nav-overlay.open .nav-menu-list li a {
  opacity: 0.7;
  transform: translateY(0);
}

.nav-overlay.open .nav-menu-list li:nth-child(1) a { transition-delay: 0.1s; }
.nav-overlay.open .nav-menu-list li:nth-child(2) a { transition-delay: 0.15s; }
.nav-overlay.open .nav-menu-list li:nth-child(3) a { transition-delay: 0.2s; }
.nav-overlay.open .nav-menu-list li:nth-child(4) a { transition-delay: 0.25s; }
.nav-overlay.open .nav-menu-list li:nth-child(5) a { transition-delay: 0.3s; }

.nav-menu-list li a:hover {
  opacity: 1;
  color: var(--brand-color);
  transform: translateX(10px);
}

.nav-info-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
}

.nav-info-title {
  color: var(--brand-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-info-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-info-links a {
  font-size: 1.1rem;
  opacity: 0.8;
}

.nav-info-links a:hover {
  opacity: 1;
  color: var(--brand-color);
}

.nav-socials {
  display: flex;
  gap: 1rem;
}

.nav-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  transition: var(--transition-smooth);
}

.nav-socials a:hover {
  background-color: var(--brand-color);
  transform: scale(1.1);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Google Rating Badge */
.google-rating-wrapper {
  position: relative;
  margin-bottom: 2rem;
  z-index: 5;
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  height: 56px;
  padding: 0 1.5rem;
  border: 1px solid var(--brand-yellow);
  background-color: var(--bg-primary);
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

.rating-star-group {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.95rem;
}

.rating-star-group .star-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-yellow);
  fill: currentColor;
}

.rating-platform-svg {
  width: 80px;
  height: auto;
  display: block;
}

.rating-badge-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  background-color: var(--brand-color);
  filter: blur(20px);
  opacity: 0.45;
  border-radius: 12px;
}

/* Hero Typography */
.hero-line-1 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-arrow-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #312DFF;
  display: grid;
  place-items: center;
}

.hero-arrow-circle svg {
  width: 24px;
  height: 24px;
  transition: var(--transition-elastic);
}

.hero-arrow-circle:hover svg {
  transform: rotate(45deg);
}

.hero-line-2 {
  font-size: 9.5rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0.5rem 0;
}

.hero-oval-graphic {
  width: 144px;
  height: 96px;
  display: block;
}

.hero-line-3 {
  font-size: 3.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-line-3 svg {
  width: 40px;
  height: 40px;
}

.hero-cta-btn {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-color);
  color: var(--text-white);
  padding: 1.1rem 2.8rem;
  border: 1px solid var(--brand-color);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.hero-cta-btn:hover {
  background-color: transparent;
  color: var(--text-white);
  box-shadow: 0 0 30px rgba(247, 96, 49, 0.45);
}

/* Background vertical lines grid */
.hero-lines-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.backdrop-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.035);
  animation: lineFade 8s infinite ease-in-out;
}

@keyframes lineFade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.85; }
}

/* --- Service Ticker Strip --- */
.service-ticker-section {
  background-color: var(--bg-dark-shade-2);
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  width: max-content;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: tickerScroll 25s linear infinite;
  padding-right: 4rem;
}

.ticker-track svg {
  height: 52px;
  width: auto;
  color: rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

.ticker-track a:hover svg {
  color: var(--brand-color);
}

.ticker-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--brand-color);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Why Choose Us (Values) --- */
.values-section {
  padding: 7rem 0;
  background-color: var(--bg-primary);
}

.values-scroll-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
}

.values-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.value-card {
  flex: 0 0 29%;
  min-width: 320px;
  scroll-snap-align: start;
  border-radius: 24px;
  padding: 2.2rem;
  background-color: var(--bg-color);
  color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  height: 250px;
  justify-content: flex-start;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.value-card-icon {
  width: 52px;
  height: 52px;
  color: var(--icon-color);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(10, 10, 12, 0.8);
}

/* --- Services Section ("This Is What We Do") --- */
.services-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-grey);
  max-width: 600px;
  margin: 0 auto;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.slider-arrow-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: var(--transition-smooth);
  color: var(--text-grey);
}

.slider-arrow-btn:hover {
  border-color: var(--brand-color);
  color: var(--brand-color);
  transform: scale(1.05);
}

.slider-viewport {
  flex: 1;
  overflow: hidden;
}

.services-grid {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background-color: var(--bg-secondary);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--brand-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: rgba(247, 96, 49, 0.1);
  display: grid;
  place-items: center;
  color: var(--brand-color);
  margin-bottom: 2rem;
}

.service-icon-circle svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-learn-more svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-learn-more svg {
  transform: translateX(4px);
}

/* --- Case Studies --- */
.case-studies-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.case-study-title-secondary {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 0.25rem;
}

.case-studies-header a {
  color: var(--brand-color);
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.case-studies-header a:hover {
  color: var(--text-white);
}

.case-studies-slider {
  margin-top: 4rem;
  position: relative;
}

.case-study-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  transition: opacity 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.case-study-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.case-study-visual {
  width: 100%;
  aspect-ratio: 92/87;
  border-radius: 30px;
  overflow: hidden;
}

.case-study-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-slide:hover .case-study-visual img {
  transform: scale(1.03);
}

.case-study-details {
  padding-right: 2rem;
}

.case-study-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-study-category::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background-color: var(--text-white);
}

.case-study-details h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.case-study-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.metric-box {
  flex: 1;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-number span {
  color: var(--text-white);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-grey);
}

.case-study-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--brand-color);
  color: var(--text-white);
  padding: 1rem 2rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.case-study-read-btn:hover {
  background-color: transparent;
  box-shadow: 0 0 20px rgba(247, 96, 49, 0.35);
}

.case-studies-nav-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
  border: none;
}

.nav-dot.active {
  background-color: var(--brand-color);
  width: 24px;
  border-radius: 12px;
}

/* --- Tech Stack Section --- */
.tech-stack-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tech-tab-btn {
  padding: 0.75rem 2rem;
  border-radius: 30px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.tech-tab-btn.active, .tech-tab-btn:hover {
  background-color: var(--brand-color);
  border-color: var(--brand-color);
  color: var(--text-white);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
}

.tech-card {
  background-color: var(--bg-secondary);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-color);
}

.tech-icon-wrapper {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
}

.tech-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tech-card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

/* --- Stats & Trust --- */
.stats-section {
  background-color: var(--bg-dark-shade-5);
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stats-intro h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.stats-intro p {
  color: var(--text-grey);
  margin-bottom: 2rem;
}

.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.dashed-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.dashed-circle:hover {
  border-color: var(--brand-color);
  transform: scale(1.05);
}

.achievement-counter {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-color);
}

.dashed-circle p {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
}

.trust-badges-flex {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}

.trust-badge-img {
  width: 120px;
  height: auto;
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.trust-badge-img:hover {
  opacity: 1;
}

/* --- Key Strengths --- */
.strengths-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 80%;
  margin: 0 auto;
}

.strength-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.check-icon-circle {
  width: 32px;
  height: 32px;
  background-color: var(--brand-color);
  color: var(--text-white);
  border-radius: 4px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.check-icon-circle svg {
  width: 20px;
  height: 20px;
}

.strength-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.strength-content p {
  color: var(--text-grey);
  font-weight: 300;
  font-size: 0.95rem;
}

/* --- Process Section --- */
.process-section {
  padding: 6rem 0;
  background-color: var(--bg-dark-shade-11);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}

.process-sticky-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sticky-paper {
  width: 220px;
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--bg-primary);
  text-align: center;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.bg-theme-purple { background-color: var(--theme-purple); }
.bg-theme-pink { background-color: var(--theme-pink); }
.bg-theme-yellow { background-color: var(--theme-yellow); }

.rotate-left { transform: rotate(-5deg); }
.rotate-right { transform: rotate(3deg); }
.rotate-subtle { transform: rotate(-2deg); }

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number-ball {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--brand-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.step-number-ball .number {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.step-number-ball .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.process-step-content p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-cta {
  margin-top: 3rem;
}

/* --- Blog Section --- */
.blogs-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.blogs-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.blogs-section-header h2 {
  font-size: 3rem;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--bg-secondary);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-image-wrapper {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card h3 a:hover {
  color: var(--brand-color);
}

.blog-card p {
  color: var(--text-grey);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-color);
  font-weight: 700;
  font-size: 0.9rem;
}

.blog-read-more svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-read-more svg {
  transform: translateX(4px);
}

/* --- Testimonials Strip --- */
.testimonials-ticker {
  background-color: var(--bg-dark-shade-7);
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  animation: tickerScroll 40s linear infinite;
  padding-right: 5rem;
}

.testimonial-strip-item {
  flex-shrink: 0;
  max-width: 500px;
}

.testimonial-text {
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Pre-Footer Callout --- */
.pre-footer-callout {
  background-color: var(--bg-dark-shade-7);
  text-align: center;
  padding: 6rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pre-footer-callout h2 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pre-footer-email {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--brand-color);
  position: relative;
  display: inline-block;
}

.pre-footer-email::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-color);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.pre-footer-email:hover::after {
  transform: scaleX(1);
}

/* --- Footer --- */
footer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-dark-shade-8) 100%);
  padding-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-col svg {
  height: 48px;
  width: auto;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: grid;
  place-items: center;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background-color: var(--brand-color);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-badges {
  display: flex;
  gap: 1.5rem;
}

.footer-badge-img {
  width: 72px;
  height: auto;
  opacity: 0.6;
}

.footer-badge-img:hover {
  opacity: 1;
}

.footer-links-col h4 {
  font-size: 1.35rem;
  margin-bottom: 2rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-list a {
  color: var(--text-grey);
  font-size: 0.95rem;
}

.footer-links-list a:hover {
  color: var(--brand-color);
}

.footer-offices-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.office-info h5 {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.office-info p {
  color: var(--text-grey);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.office-info a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.office-info a:hover {
  color: var(--brand-color);
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom span {
  text-decoration: underline;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
}

/* --- Floating Actions --- */
.floating-skype {
  position: fixed;
  bottom: 120px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #00aff0;
  display: grid;
  place-items: center;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-elastic);
}

.floating-skype:hover {
  transform: scale(1.1);
}

.floating-skype svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp {
  position: fixed;
  bottom: 40px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: grid;
  place-items: center;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-elastic);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* --- Sub-page Elements Styles --- */
.sub-hero {
  position: relative;
  padding: 140px 0 80px 0;
  text-align: center;
  background-color: var(--bg-dark-shade-11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-hero h1 {
  font-size: 3.5rem;
  margin-top: 1rem;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--brand-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Detailed Service Cards Grid */
.detail-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 5rem 0;
}

.detail-service-card {
  background-color: var(--bg-secondary);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.detail-service-card:hover {
  border-color: var(--brand-color);
  transform: translateY(-5px);
}

.detail-service-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-grey);
}

.detail-service-list li svg {
  color: var(--brand-color);
  flex-shrink: 0;
}

/* Careers Open Jobs Accordions */
.job-accordion {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: var(--bg-secondary);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.job-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.job-header:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.job-header h3 {
  font-size: 1.25rem;
}

.job-body {
  padding: 0 2rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
}

.job-accordion.open .job-body {
  padding: 1.5rem 2rem;
  max-height: 1000px;
  opacity: 1;
}

/* Contact Grid & Form Controls */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  padding: 5rem 0;
}

.contact-form-group {
  margin-bottom: 2rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-input, .contact-textarea, .contact-select {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--text-white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.contact-input:focus, .contact-textarea:focus, .contact-select:focus {
  outline: none;
  border-color: var(--brand-color);
  box-shadow: 0 0 15px rgba(247, 96, 49, 0.15);
}

.contact-submit-btn {
  background-color: var(--brand-color);
  color: var(--text-white);
  padding: 1.1rem 2.8rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid var(--brand-color);
}

.contact-submit-btn:hover {
  background-color: transparent;
  box-shadow: 0 0 30px rgba(247, 96, 49, 0.45);
}

/* Team Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 5rem 0;
}

.team-card {
  background-color: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-color);
}

.team-avatar-wrapper {
  aspect-ratio: 1;
  background-color: var(--bg-dark-shade-5);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--brand-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Case Grid Layout */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 5rem 0;
}

.case-grid-card {
  background-color: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.case-grid-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-color);
}

.case-image {
  aspect-ratio: 16/11;
  overflow: hidden;
}

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

.case-grid-card:hover .case-image img {
  transform: scale(1.05);
}

.case-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case-info h3 {
  font-size: 1.35rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.case-info p {
  color: var(--text-grey);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-link {
  margin-top: auto;
  color: var(--brand-color);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.case-link svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-smooth);
}

.case-grid-card:hover .case-link svg {
  transform: translateX(4px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero-line-2 { font-size: 7.5rem; }
  .hero-oval-graphic { width: 110px; height: 74px; }
  .values-scroll-container { gap: 1.5rem; }
  .value-card { flex: 0 0 45%; }
  .service-card { flex: 0 0 calc(50% - 1rem); }
  .case-study-slide { grid-template-columns: 1fr; gap: 2rem; }
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-sticky-aside { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .blogs-grid { grid-template-columns: 1fr 1fr; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .detail-services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  html, body { font-size: 14px; }
  .header-container { height: 70px; }
  .hero-line-1 { font-size: 2.2rem; }
  .hero-line-2 { font-size: 4.8rem; display: none; }
  .hero-line-2-mobile { display: block !important; font-size: 5rem; font-weight: 900; margin: 1rem 0; }
  .hero-line-3 { font-size: 2.2rem; }
  .hero-arrow-circle { width: 36px; height: 36px; }
  .hero-line-3 svg { width: 28px; height: 28px; }
  .value-card { flex: 0 0 75%; }
  .service-card { flex: 0 0 100%; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-intro { text-align: center; }
  .stats-row { justify-content: center; }
  .strengths-grid { grid-template-columns: 1fr; width: 100%; }
  .blogs-section-header { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
  .blogs-grid { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .footer-logo-col { display: flex; flex-direction: column; align-items: center; }
  .footer-badges { justify-content: center; }
  .footer-offices-col { align-items: center; }
  .pre-footer-callout h2, .pre-footer-email { font-size: 2rem; }
  .nav-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-menu-list li a { font-size: 2rem; }
  .nav-info-block { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
}

/* Hide mobile-specific hero items on desktop */
.hero-line-2-mobile {
  display: none;
}

