@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #103649;
  --navy-dark: #0a2532;
  --navy-light: #1a4a5f;
  --blue: #0098DB;
  --blue-dark: #007bb5;
  --blue-light: #e6f4fb;
  --green: #00A676;
  --green-dark: #008a5e;
  --green-light: #e6f7f1;
  --white: #FFFFFF;
  --black: #000000;
  --text: #1A1A2E;
  --text-light: #555570;
  --text-lighter: #8888A0;
  --bg-light: #F7F8FA;
  --bg-dark: #103649;
  --border: #E8E8EE;
  --border-light: #F0F0F5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); letter-spacing: -0.01em; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-label.light { color: rgba(255,255,255,0.7); }

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle.center {
  margin: 0 auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,152,219,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn .icon-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.btn:hover .icon-arrow {
  transform: translateX(4px);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.nav.scrolled .nav-logo-text,
.nav.scrolled .nav-link {
  color: var(--text);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo-img {
  width: clamp(178px, 13vw, 238px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav.scrolled .nav-logo-img {
  filter: brightness(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--white);
}

.nav.scrolled .nav-link:hover {
  color: var(--navy);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.nav-toggle svg:last-child {
  display: none;
}

.nav-toggle.active svg:first-child {
  display: none;
}

.nav-toggle.active svg:last-child {
  display: block;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--white);
  transition: color var(--transition);
}

.nav.scrolled .nav-toggle svg {
  color: var(--text);
}


@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    color: var(--text);
    font-size: 1rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    display: flex;
    align-items: center;
    font-weight: 500;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--blue);
  }

  .nav.scrolled .nav-link {
    color: var(--text);
  }

  .nav .nav-cta {
    display: flex;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.9rem;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16,54,73,0.94) 0%, rgba(10,37,50,0.88) 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 0;
}

.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.hero-content {
  max-width: 720px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,152,219,0.15);
  border: 1px solid rgba(0,152,219,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 32px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--blue);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  width: 100%;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

/* Page Banner */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  background: var(--navy);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16,54,73,0.97) 0%, rgba(10,37,50,0.85) 50%, rgba(0,152,219,0.15) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.page-banner-breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.page-banner-breadcrumb a:hover {
  color: var(--blue);
}

.page-banner-breadcrumb .sep {
  color: rgba(255,255,255,0.3);
}

.page-banner-breadcrumb .current {
  color: var(--white);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header.left {
  text-align: left;
}

.section-header.light .section-title {
  color: var(--white);
}

.section-header.light .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Service Card */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: all var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--blue);
  color: var(--white);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

.service-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

.service-card.dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.service-card.dark h3 { color: var(--white); }
.service-card.dark p { color: rgba(255,255,255,0.65); }
.service-card.dark .service-card-link { color: var(--blue); }
.service-card.dark .service-card-icon {
  background: rgba(0,152,219,0.15);
  color: var(--blue);
}
.service-card.dark:hover .service-card-icon {
  background: var(--blue);
  color: var(--white);
}

/* Portfolio Card */
.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}

.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.portfolio-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-image img[src*="analytics-dashboard"] {
  object-position: center bottom;
}

.portfolio-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16,54,73,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-card-overlay span svg {
  width: 16px;
  height: 16px;
}

.portfolio-card-body {
  padding: 24px;
}

.portfolio-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 8px;
}

.portfolio-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.portfolio-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Blog Card */
.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-lighter);
  margin-bottom: 12px;
}

.blog-card-tag {
  padding: 4px 12px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.blog-card-link:hover svg {
  transform: translateX(4px);
}

/* Team Card */
.team-card {
  text-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-card-image {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
}

.team-card-body {
  padding: 24px 20px;
}

.team-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 4px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

/* Values */
.value-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.value-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: all var(--transition);
}

.value-item:hover .value-icon {
  background: var(--blue);
  color: var(--white);
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Industries */
.industry-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) transparent;
  cursor: grab;
  user-select: none;
}

.industry-grid::-webkit-scrollbar {
  height: 4px;
}

.industry-grid::-webkit-scrollbar-track {
  background: transparent;
}

.industry-grid::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
}

.industry-grid:active {
  cursor: grabbing;
}

.industry-tag {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  flex-shrink: 0;
  scroll-snap-align: start;
}

.industry-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* About Preview */
.about-preview-content {
  padding-right: 0;
}

@media (min-width: 768px) {
  .about-preview-content {
    padding-right: 48px;
  }
}

.about-preview-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  display: none;
}

@media (min-width: 768px) {
  .about-preview-experience {
    display: block;
  }
}

.about-preview-experience .number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-preview-experience .label {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
}

.cta-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16,54,73,0.95), rgba(10,37,50,0.9));
}

.cta-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Contact Info */
.contact-info-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,152,219,0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-lighter);
}

.form-status {
  min-height: 22px;
  margin: -4px 0 16px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #b42318;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.footer-logo-img {
  width: min(240px, 100%);
  height: auto;
  display: block;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Page-specific */
.page-content {
  padding: 60px 0;
}

.content-section {
  padding: 80px 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--border);
}

/* Service Detail */
.service-detail-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--navy);
  overflow: hidden;
}

.service-detail-hero .container {
  position: relative;
  z-index: 2;
}

.service-detail-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.service-detail-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
}

.service-offerings {
  list-style: none;
}

.service-offerings li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.service-offerings li:last-child {
  border-bottom: none;
}

.service-offerings li svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-offerings li h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.service-offerings li p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Portfolio Detail */
.portfolio-detail-hero {
  padding: 160px 0 60px;
  background: var(--bg-light);
}

.portfolio-detail-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
}

.portfolio-detail-image img {
  width: 100%;
  height: auto;
}

.portfolio-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .portfolio-detail-meta {
    grid-template-columns: repeat(4, 1fr);
  }
}

.portfolio-meta-item h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-lighter);
  margin-bottom: 4px;
}

.portfolio-meta-item p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.portfolio-detail-content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.portfolio-detail-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Blog Detail */
.blog-detail-hero {
  padding: 160px 0 60px;
  background: var(--bg-light);
}

.blog-detail-hero .blog-card-meta {
  margin-bottom: 20px;
}

.blog-detail-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-detail-image img {
  width: 100%;
  height: auto;
}

.blog-detail-body {
  max-width: 800px;
  margin: 0 auto;
}

.blog-detail-body h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.blog-detail-body h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.blog-detail-body p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.blog-detail-body ul,
.blog-detail-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
  color: var(--text-light);
}

.blog-detail-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.blog-detail-body ul li {
  list-style: disc;
}

.blog-detail-body ol li {
  list-style: decimal;
}

.blog-detail-body blockquote {
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--bg-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.blog-share span {
  font-size: 0.85rem;
  font-weight: 500;
}

.blog-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition);
}

.blog-share a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.blog-share a svg {
  width: 14px;
  height: 14px;
}

/* Contact page */
.contact-section {
  padding: 80px 0;
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.contact-main-grid {
  align-items: start;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 0;
  box-shadow: var(--shadow-lg);
}

.contact-map iframe {
  width: 100%;
  height: 94vh;
  border: none;
}

/* Recruitments */
.recruitment-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.recruitment-empty {
  border-radius: 8px;
  border: 1px solid rgba(16,54,73,0.08);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.9)),
    url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20h120v120H20z' fill='none' stroke='%23103649' stroke-opacity='.045'/%3E%3Cpath d='M20 100h120M100 20v120' stroke='%2300A676' stroke-opacity='.055'/%3E%3C/svg%3E");
  box-shadow: 0 24px 70px rgba(16,54,73,0.07);
  padding: clamp(32px, 4vw, 56px);
}

.recruitment-empty h2 {
  max-width: 740px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.recruitment-empty p {
  max-width: 680px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.recruitment-count {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 26px 0 30px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(0,166,118,0.08);
  border: 1px solid rgba(0,166,118,0.16);
}

.recruitment-count strong {
  color: var(--green);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.recruitment-count span {
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.recruitment-actions {
  margin-top: 0;
}

.recruitment-side-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(16,54,73,0.12);
  min-height: 100%;
}

.recruitment-side-card img {
  width: 100%;
  height: min(360px, 46vw);
  object-fit: cover;
}

.recruitment-side-content {
  padding: 28px;
}

.recruitment-side-content h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.recruitment-side-content p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

/* About Values Detail */
.values-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .values-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-detail-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.value-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.value-detail-icon svg {
  width: 20px;
  height: 20px;
}

.value-detail-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-detail-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Team Detail */
.team-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .team-detail {
    grid-template-columns: 300px 1fr;
  }
}

.team-detail-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.team-detail-image img {
  width: 100%;
  height: auto;
}

.team-detail-info h3 {
  margin-bottom: 4px;
}

.team-detail-info .role {
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 16px;
}

.team-detail-info p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Testimonial */
.testimonial {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  color: var(--blue);
  opacity: 0.15;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  padding: 32px 24px;
  position: relative;
  counter-increment: step;
}

.process-step::before {
  content: '0' counter(step);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 0;
  }

  .hero-main {
    padding: 40px 0 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-tag {
    margin-bottom: 20px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-stats {
    padding: 24px 0;
  }

  .hero-stats-grid {
    gap: 16px;
  }

  .hero-stat-number {
    font-size: 1.3rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-banner {
    padding: 130px 0 60px;
    min-height: 220px;
  }

  .page-banner-bg {
    opacity: 0.15;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .service-detail-hero {
    padding: 130px 0 60px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .contact-map,
  .contact-map iframe {
    height: 380px;
    min-height: 380px;
  }

  .recruitment-hero-grid {
    grid-template-columns: 1fr;
  }

  .recruitment-side-card img {
    height: 260px;
  }

  .portfolio-detail-meta {
    padding: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-stats-grid {
    gap: 20px;
  }
}

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }

/* Modern 2026 visual refresh */
body {
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 166, 118, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(0, 152, 219, 0.1), transparent 24rem),
    #eef5f4;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23103649' stroke-opacity='.08'%3E%3Cpath d='M0 60h120M60 0v120'/%3E%3Ccircle cx='60' cy='60' r='22'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.container {
  max-width: 100%;
  padding: 0 clamp(20px, 4vw, 72px);
}

.section {
  position: relative;
  padding: clamp(70px, 7vw, 110px) 0;
  overflow: hidden;
}

.section-light {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.8), rgba(237,249,246,0.9)),
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 16h148v148H16z' fill='none' stroke='%2300A676' stroke-opacity='.07'/%3E%3Cpath d='M32 90h116M90 32v116' stroke='%230098DB' stroke-opacity='.06'/%3E%3C/svg%3E");
}

.section-header {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px dashed rgba(0, 166, 118, 0.35);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0,166,118,0.12);
}

.section-label.light {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.18);
}

.section-title {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.section-subtitle {
  color: #546675;
}

.grid-3,
.grid-4,
.values-detail-grid,
.process-steps {
  gap: clamp(20px, 2.4vw, 32px);
}

.btn {
  position: relative;
  min-height: 54px;
  padding: 8px 10px 8px 26px;
  gap: 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  box-shadow: 0 18px 40px rgba(16, 54, 73, 0.14);
  isolation: isolate;
}

.btn::after {
  content: '';
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: 0 0 38px;
  background-color: var(--navy-dark);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7'/%3E%3Cpath d='M8 7h9v9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px;
  transition: transform var(--transition), background-color var(--transition);
}

.btn svg {
  display: none;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  transform: rotate(45deg);
}

.btn-primary {
  background: linear-gradient(135deg, #238d8b, var(--green));
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green), #238d8b);
  box-shadow: 0 22px 50px rgba(0,166,118,0.26);
}

.btn-secondary,
.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(16,54,73,0.12);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-sm {
  min-height: 48px;
  padding: 7px 8px 7px 22px;
}

.btn-sm::after {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  background-size: 15px;
}

.btn-lg {
  min-height: 60px;
  padding: 9px 10px 9px 30px;
}

.nav {
  height: 88px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16,54,73,0.08);
}

.nav.scrolled {
  box-shadow: 0 18px 50px rgba(16,54,73,0.08);
}

.nav-logo-img {
  width: clamp(188px, 14vw, 252px);
  height: 58px;
}

.nav-links {
  gap: clamp(14px, 1.8vw, 30px);
}

.nav-link,
.nav.scrolled .nav-link {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-link:hover,
.nav-link.active,
.nav.scrolled .nav-link:hover {
  color: #238d8b;
}

.nav-link::after {
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #238d8b, var(--green));
}

.nav-toggle {
  color: var(--navy);
}

.nav-toggle svg,
.nav.scrolled .nav-toggle svg {
  color: var(--navy);
  width: 30px;
  height: 30px;
}

.hero-modern {
  padding: calc(var(--nav-height) + 28px) 0 28px;
  min-height: 100vh;
  background: #eef5f4;
  overflow: hidden;
}

.hero-modern .container {
  padding: 0 clamp(20px, 2.4vw, 40px);
}

.hero-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: calc(100vh - var(--nav-height) - 56px);
}

.hero-grid > * {
  min-width: 0;
}

.hero-panel,
.hero-media-card {
  border-radius: 8px;
  overflow: hidden;
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5.2vw, 74px);
  background:
    linear-gradient(135deg, rgba(3,25,30,0.96), rgba(16,54,73,0.98)),
    url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-opacity='.07'%3E%3Cpath d='M-20 220L220 -20M20 240L240 20M-40 170L170 -40'/%3E%3Cpath d='M30 30h160v160H30z' stroke-dasharray='5 8'/%3E%3C/g%3E%3C/svg%3E");
  box-shadow: 0 30px 70px rgba(16,54,73,0.18);
}

.hero-panel::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  border: 1px solid rgba(0,166,118,0.24);
  box-shadow: inset 0 0 0 40px rgba(0,166,118,0.035);
}

.hero-kicker {
  position: relative;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: clamp(28px, 4vw, 54px);
  color: rgba(255,255,255,0.88);
  border: 1px dashed rgba(0,166,118,0.35);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: normal;
}

.hero-kicker svg {
  width: 18px;
  height: 18px;
  color: #238d8b;
}

.hero-modern-title {
  color: var(--white);
  font-size: clamp(3.2rem, 4.25vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 500;
  margin-bottom: clamp(24px, 3.4vw, 42px);
  overflow-wrap: normal;
  word-break: normal;
}

.hero-title-line {
  display: inline;
}

.hero-title-primary {
  color: var(--white);
  font-weight: 850;
}

.hero-title-accent {
  color: var(--green);
  font-weight: 850;
  text-shadow: 0 18px 48px rgba(0,166,118,0.24);
}

.hero-panel-line {
  width: min(580px, 100%);
  height: 1px;
  margin-bottom: 22px;
  border-top: 1px dashed rgba(255,255,255,0.18);
}

.hero-panel-bottom {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 560px;
  padding-top: 8px;
}

.hero-diagonal-icon {
  width: 86px;
  height: 86px;
  color: rgba(255,255,255,0.9);
}

.hero-panel-bottom p {
  color: rgba(255,255,255,0.66);
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  margin: 0;
  padding-left: 30px;
  border-left: 1px dashed rgba(255,255,255,0.18);
  overflow-wrap: break-word;
}

.hero-actions.hero-actions-modern {
  margin-top: 28px;
}

.hero-media {
  position: relative;
  min-height: 100%;
}

.hero-media-card {
  position: relative;
  height: 72%;
  min-height: 460px;
  box-shadow: 0 30px 80px rgba(16,54,73,0.13);
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,54,73,0.28));
}

.hero-customer-card,
.hero-metric-ribbon {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(16,54,73,0.08);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(16,54,73,0.16);
  backdrop-filter: blur(18px);
}

.hero-customer-card {
  left: 0;
  bottom: 0;
  width: min(320px, 72%);
  padding: 24px;
}

.hero-avatar-row {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.hero-avatar-row img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-right: -12px;
}

.hero-avatar-plus {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  color: var(--white);
  background: #238d8b;
  font-size: 1.8rem;
  font-weight: 600;
}

.hero-customer-card strong {
  display: block;
  color: var(--navy-dark);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 10px;
}

.hero-customer-card span {
  color: #546675;
  font-size: 1rem;
}

.hero-metric-ribbon {
  left: auto;
  right: 28px;
  top: 28px;
  bottom: auto;
  width: min(350px, calc(100% - 56px));
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.hero-mini-stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.75rem;
  letter-spacing: -0.05em;
}

.hero-mini-stat span {
  color: #62727e;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-clean {
  position: relative;
  min-height: clamp(620px, 86vh, 820px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 52px) 0 64px;
  background: var(--navy-dark);
}

.hero-clean-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-clean-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,28,105,0.94) 0%, rgba(7,28,105,0.83) 38%, rgba(7,28,105,0.48) 72%, rgba(7,28,105,0.26) 100%),
    radial-gradient(circle at 28% 52%, rgba(0,166,118,0.24), transparent 34rem);
}

.hero-clean .container {
  position: relative;
  z-index: 1;
}

.hero-clean-content {
  width: min(720px, 100%);
}

.hero-clean .hero-kicker {
  padding: 8px 14px;
  margin-bottom: 24px;
  color: var(--white);
  background: rgba(0,166,118,0.95);
  border: 0;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.82rem;
}

.hero-clean .hero-kicker svg {
  color: var(--white);
}

.hero-clean .hero-modern-title {
  max-width: 720px;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 850;
  margin-bottom: 24px;
}

.hero-clean-subtitle {
  width: min(660px, 100%);
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.55;
  margin-bottom: 30px;
}

.hero-clean .hero-actions.hero-actions-modern {
  margin-top: 0;
}

.hero-clean-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 26px;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

.hero-clean-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-clean-meta span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0,166,118,0.18);
}

@media (min-width: 1024px) {
  .hero-clean .container {
    max-width: min(1520px, calc(100% - 96px));
  }

  .hero-clean-content {
    width: min(1400px, 100%);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-clean .hero-modern-title {
    max-width: 1400px;
    font-size: clamp(4.2rem, 5.35vw, 6.4rem);
  }

  .hero-clean .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .hero-clean-subtitle {
    width: min(900px, 100%);
    font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  }

  .hero-clean .hero-actions.hero-actions-modern,
  .hero-clean-meta {
    justify-content: center;
  }

  .hero-clean-overlay {
    background:
      radial-gradient(circle at 50% 52%, rgba(0,166,118,0.24), transparent 34rem),
      linear-gradient(90deg, rgba(7,28,105,0.9) 0%, rgba(7,28,105,0.76) 36%, rgba(7,28,105,0.62) 64%, rgba(7,28,105,0.42) 100%);
  }
}

.partners-section {
  overflow: hidden;
}

.partner-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(16,54,73,0.08);
  border-bottom: 1px solid rgba(16,54,73,0.08);
  background: rgba(255,255,255,0.78);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 20px 0;
  animation: partner-scroll 26s linear infinite;
}

.partner-logo {
  min-width: 230px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(16,54,73,0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(16,54,73,0.06);
  font-weight: 850;
  letter-spacing: 0.02em;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  filter: saturate(0.95) contrast(1.02);
}

@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page-banner,
.service-detail-hero {
  margin-top: 88px;
  padding: clamp(72px, 8vw, 118px) 0 clamp(56px, 6vw, 86px);
  min-height: auto;
  background:
    linear-gradient(135deg, rgba(3,25,30,0.96), rgba(16,54,73,0.94)),
    url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-opacity='.08'%3E%3Cpath d='M0 110h220M110 0v220'/%3E%3Ccircle cx='110' cy='110' r='52'/%3E%3C/g%3E%3C/svg%3E");
}

.page-banner-bg {
  opacity: 0.18;
  filter: saturate(0.9) contrast(1.08);
}

.page-banner-overlay {
  background:
    radial-gradient(circle at 84% 32%, rgba(0,166,118,0.28), transparent 28rem),
    linear-gradient(135deg, rgba(3,25,30,0.84), rgba(16,54,73,0.88));
}

.page-banner-title,
.service-detail-hero h1 {
  max-width: 880px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.page-banner-breadcrumb {
  margin-bottom: 18px;
}

.service-card,
.portfolio-card,
.blog-card,
.team-card,
.value-item,
.value-detail-card,
.contact-info-card,
.contact-form-wrapper,
.portfolio-detail-meta,
.testimonial {
  border-radius: 8px;
  border: 1px solid rgba(16,54,73,0.08);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.88)),
    url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20h120v120H20z' fill='none' stroke='%23103649' stroke-opacity='.045'/%3E%3Cpath d='M20 100h120M100 20v120' stroke='%2300A676' stroke-opacity='.055'/%3E%3C/svg%3E");
  box-shadow: 0 24px 70px rgba(16,54,73,0.07);
}

.service-card,
.value-item,
.value-detail-card,
.contact-info-card {
  min-height: 100%;
}

.service-card {
  padding: clamp(28px, 3.2vw, 42px);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  height: 100%;
  width: 5px;
  background: linear-gradient(180deg, var(--green), var(--blue));
  transform: scaleY(0);
  transform-origin: bottom;
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card:hover,
.portfolio-card:hover,
.blog-card:hover,
.team-card:hover,
.value-item:hover,
.value-detail-card:hover,
.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(16,54,73,0.14);
  border-color: rgba(0,166,118,0.2);
}

.service-card-icon,
.value-icon,
.value-detail-icon,
.contact-info-icon {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,166,118,0.12), rgba(0,152,219,0.12));
  color: var(--green);
}

.service-card:hover .service-card-icon,
.value-item:hover .value-icon,
.value-detail-card:hover .value-detail-icon,
.contact-info-card:hover .contact-info-icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(-3deg) scale(1.06);
}

.service-card h3,
.portfolio-card h3,
.blog-card h3,
.team-card h4 {
  color: var(--navy);
  font-weight: 800;
}

.service-card-link,
.blog-card-link {
  margin-top: auto;
  color: #238d8b;
  font-weight: 850;
}

.portfolio-card-image,
.blog-card-image,
.team-card-image,
.about-preview-image,
.portfolio-detail-image,
.blog-detail-image,
.contact-map,
.team-detail-image {
  border-radius: 8px;
}

.portfolio-card-overlay {
  background: linear-gradient(135deg, rgba(3,25,30,0.78), rgba(0,166,118,0.52));
}

.blog-card-tag,
.portfolio-card-category {
  color: #238d8b;
}

.team-card-image {
  width: 136px;
  height: 136px;
  aspect-ratio: 1 / 1;
  margin: 30px auto 0;
  border-radius: 50%;
  border: 4px solid rgba(0,166,118,0.14);
  box-shadow: 0 18px 42px rgba(16,54,73,0.14);
  background: var(--white);
}

.team-card-image img {
  border-radius: 50%;
}

.team-card-body {
  padding-top: 18px;
}

.team-detail {
  padding: 24px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(16,54,73,0.08);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(16,54,73,0.06);
}

.team-detail-image {
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  justify-self: center;
  box-shadow: 0 18px 42px rgba(16,54,73,0.14);
}

.team-detail-image img {
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  overflow: visible;
  gap: 16px;
}

.industry-tag {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 38px rgba(16,54,73,0.05);
  font-weight: 800;
}

.process-step {
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(16,54,73,0.08);
  box-shadow: 0 24px 60px rgba(16,54,73,0.06);
}

.cta-section {
  padding: clamp(76px, 8vw, 120px) 0;
  background:
    linear-gradient(135deg, rgba(3,25,30,0.95), rgba(16,54,73,0.92)),
    url("data:image/svg+xml,%3Csvg width='240' height='240' viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-opacity='.08'%3E%3Cpath d='M0 120h240M120 0v240'/%3E%3Cpath d='M40 40l160 160M200 40L40 200'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-section-bg {
  opacity: 0.2;
  filter: saturate(0.9);
}

.cta-section-overlay {
  background:
    radial-gradient(circle at 20% 20%, rgba(0,166,118,0.26), transparent 28rem),
    linear-gradient(135deg, rgba(3,25,30,0.78), rgba(16,54,73,0.86));
}

.footer {
  background:
    linear-gradient(135deg, var(--navy-dark), #03191e),
    url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80h160M80 0v160' stroke='white' stroke-opacity='.055'/%3E%3C/svg%3E");
}

.footer-top {
  padding: clamp(58px, 7vw, 92px) 0 44px;
}

.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
}

.form-input,
.form-select,
.form-textarea {
  border-radius: 8px;
  border-color: rgba(16,54,73,0.12);
  background: rgba(255,255,255,0.88);
}

.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in-scale {
  transition-duration: 0.85s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media-card {
    height: auto;
    min-height: 420px;
  }

  .hero-media {
    min-height: 620px;
  }
}

@media (max-width: 767px) {
  .nav {
    height: 76px;
  }

  .nav-logo-img {
    height: 46px;
  }

  .nav-toggle {
    position: fixed;
    top: 22px;
    right: 18px;
    display: flex !important;
  }

  .nav-links {
    background: rgba(255,255,255,0.98);
    padding-top: 92px;
  }

  .nav .nav-cta {
    width: max-content;
    max-width: 100%;
  }

  .hero-modern {
    padding-top: calc(76px + 14px);
  }

  .hero-clean {
    min-height: 680px;
    padding: calc(76px + 64px) 0 54px;
  }

  .hero-modern .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-clean-overlay {
    background:
      linear-gradient(90deg, rgba(7,28,105,0.94) 0%, rgba(7,28,105,0.82) 100%),
      radial-gradient(circle at 20% 48%, rgba(0,166,118,0.22), transparent 24rem);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }

  .hero-panel {
    padding: 28px 20px;
    width: 100%;
    max-width: 100%;
  }

  .hero-kicker {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .hero-modern-title {
    font-size: clamp(2.15rem, 10vw, 2.8rem);
    letter-spacing: -0.035em;
  }

  .hero-clean .hero-modern-title {
    font-size: clamp(2.35rem, 11vw, 3rem);
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
  }

  .hero-clean-subtitle {
    font-size: 1rem;
  }

  .hero-clean-meta {
    display: grid;
    gap: 10px;
  }

  .hero-panel-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-panel-bottom p {
    padding-left: 0;
    border-left: 0;
    font-size: 0.95rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-actions.hero-actions-modern {
    flex-direction: column;
  }

  .hero-actions.hero-actions-modern .btn {
    width: 100%;
  }

  .hero-media {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-media-card {
    min-height: 360px;
  }

  .hero-customer-card,
  .hero-metric-ribbon {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .hero-metric-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .page-banner,
  .service-detail-hero {
    margin-top: 76px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-item {
    min-height: auto;
    padding: 22px;
    text-align: left;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
    row-gap: 6px;
    grid-template-areas:
      "icon title"
      "icon text";
    align-items: start;
  }

  .value-icon {
    grid-area: icon;
    width: 58px;
    height: 58px;
    margin: 0;
    border-radius: 8px;
  }

  .value-icon svg {
    width: 26px;
    height: 26px;
  }

  .value-item h4,
  .value-item p {
    grid-column: auto;
  }

  .value-item h4 {
    grid-area: title;
    font-size: 1.15rem;
    margin-bottom: 6px;
  }

  .value-item p {
    grid-area: text;
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
