/* ============================================================
   Vantade — Main Stylesheet
   Primary: #0D9488 (teal-600)
   Secondary: #14b8a6 (teal-500)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --primary-color:   #0D9488;
  --secondary-color: #14b8a6;
  --accent-color:    #f59e0b;
  --text-dark:       #111827;
  --text-light:      #6b7280;
  --bg-surface:      #f8fafb;
  --bg-light:        #f0fdfa;
  --surface:         #ffffff;
  --shadow:          0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg:       0 20px 50px rgba(0, 0, 0, 0.12);
  --radius:          14px;
  --radius-lg:       20px;
  --border-color:    #e5e7eb;
  --text-medium:     #6b7280;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-color);
  transition: box-shadow 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 24px;
  gap: 1rem;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav { position: relative; }

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.hamburger {
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
  transform-origin: center;
  display: block;
}

.nav-toggle.active .hamburger:nth-child(1) { transform: rotate(45deg) translateY(10.5px); }
.nav-toggle.active .hamburger:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.active .hamburger:nth-child(3) { transform: rotate(-45deg) translateY(-10.5px); }

/* Small contact CTA in header */
.btn-sm {
  padding: 9px 22px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
  padding: 11px 30px;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  padding: 13px 32px;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
  background: #fff;
  color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
  display: inline-block;
  padding: 11px 30px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 50px 0 44px;
  background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 40%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(13,148,136,0.10) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(20,184,166,0.07) 0%, transparent 45%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero badge */
.hero-badge {
  display: inline-block;
  background: rgba(13,148,136,0.12);
  color: var(--primary-color);
  border: 1px solid rgba(13,148,136,0.3);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.06;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.hero-highlight {
  color: var(--primary-color);
  position: relative;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(13,148,136,0.15);
  border-bottom: 1px solid rgba(13,148,136,0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
}

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

.stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(13,148,136,0.2);
}

/* Hero CTA row */
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(13,148,136,0.2);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}

/* Hero image area */
.hero-image-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13,148,136,0.15);
  display: block;
}

/* Floating accent cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  font-size: 13px;
  min-width: 170px;
  border: 1px solid rgba(13,148,136,0.15);
}

.hero-float-card strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14px;
}

.hero-float-card span {
  color: var(--text-light);
  font-size: 12px;
}

.float-icon { font-size: 26px; flex-shrink: 0; }

.hero-float-card--a {
  bottom: 60px;
  left: -20px;
  animation: floatA 4s ease-in-out infinite;
}

.hero-float-card--b {
  top: 40px;
  right: -16px;
  animation: floatB 4.5s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ============================================================
   HERO QUICK CONTACT STRIP
   ============================================================ */
.hero-quick-contact {
  background: linear-gradient(135deg, #134e4a 0%, #0f766e 50%, #0D9488 100%);
  padding: 28px 0;
}

.hero-quick-contact .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-quick-label {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-quick-form {
  display: flex;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}

.hero-quick-form input {
  flex: 1;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  transition: border-color 0.3s;
}

.hero-quick-form input::placeholder { color: rgba(255,255,255,0.6); }

.hero-quick-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.18);
}

.hero-quick-form .btn {
  background: #fff;
  color: var(--primary-color);
  box-shadow: none;
  flex-shrink: 0;
}

.hero-quick-form .btn:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  background: rgba(13,148,136,0.08);
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(13,148,136,0.2);
  /* center it under text-align: center parents */
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 14px;
  display: block;
}

/* ============================================================
   WHY VANTADE
   ============================================================ */
.why-vantade {
  padding: 80px 0;
  background: var(--surface);
}

.why-vantade .section-title { margin-bottom: 48px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.why-card {
  background: var(--bg-surface);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(13,148,136,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,148,136,0.12);
}

.why-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

/* ============================================================
   CONTACT BANNER
   ============================================================ */
.contact-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, #0c1a18 0%, #0f2320 50%, #0a2520 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(300px, 1fr);
  gap: 3rem;
  align-items: start;
}

.contact-copy { color: #fff; }

.contact-copy .eyebrow { color: var(--secondary-color); }

.contact-copy h2 {
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
  max-width: 580px;
}

.contact-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
}

.contact-copy ul {
  list-style: none;
  margin-top: 20px;
}

.contact-copy ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  line-height: 1.7;
}

.contact-copy ul li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-form-banner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.inline-row input,
.inline-row select {
  flex: 1;
  min-width: 160px;
}

.form-row input,
.form-row select {
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 14px;
  transition: border-color 0.3s, background 0.3s;
}

.form-row input::placeholder { color: rgba(255,255,255,0.5); }

.form-row select option { background: #1a2e2b; color: #fff; }

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.2);
}

/* ============================================================
   SERVICES SECTION V2
   ============================================================ */
.services-section {
  padding: 90px 0;
  background: var(--bg-surface);
}

.services-section .section-title { margin-bottom: 14px; }
.services-section .section-subtitle { margin-bottom: 56px; }

.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card-v2 {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.svc-teal::before   { background: linear-gradient(90deg, #0D9488, #14b8a6); }
.svc-purple::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.svc-blue::before   { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.svc-orange::before { background: linear-gradient(90deg, #ea580c, #f97316); }
.svc-pink::before   { background: linear-gradient(90deg, #db2777, #ec4899); }
.svc-green::before  { background: linear-gradient(90deg, #16a34a, #22c55e); }

.service-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.svc-teal   .service-icon-wrap { background: rgba(13,148,136,0.1); }
.svc-purple .service-icon-wrap { background: rgba(124,58,237,0.1); }
.svc-blue   .service-icon-wrap { background: rgba(37,99,235,0.1); }
.svc-orange .service-icon-wrap { background: rgba(234,88,12,0.1); }
.svc-pink   .service-icon-wrap { background: rgba(219,39,119,0.1); }
.svc-green  .service-icon-wrap { background: rgba(22,163,74,0.1); }

.service-card-v2 h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card-v2 > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.service-features li {
  padding: 7px 0;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-features li:last-child { border-bottom: none; }

.service-features li::before {
  content: '→';
  flex-shrink: 0;
  font-weight: 700;
}

.svc-teal   .service-features li::before { color: #0D9488; }
.svc-purple .service-features li::before { color: #7c3aed; }
.svc-blue   .service-features li::before { color: #2563eb; }
.svc-orange .service-features li::before { color: #ea580c; }
.svc-pink   .service-features li::before { color: #db2777; }
.svc-green  .service-features li::before { color: #16a34a; }

.service-link {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.2s;
  margin-top: auto;
}

.svc-teal   .service-link { color: #0D9488; }
.svc-purple .service-link { color: #7c3aed; }
.svc-blue   .service-link { color: #2563eb; }
.svc-orange .service-link { color: #ea580c; }
.svc-pink   .service-link { color: #db2777; }
.svc-green  .service-link { color: #16a34a; }

.service-link:hover { text-decoration: underline; }

/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.projects {
  padding: 80px 0;
  background: var(--surface);
}

.projects .section-title { margin-bottom: 48px; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.project-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,148,136,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.project-card h3 {
  padding: 22px 24px 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.project-card .project-description {
  padding: 0 24px 24px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.75;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners {
  padding: 80px 0;
  background: var(--bg-surface);
}

.partners .section-title { margin-bottom: 12px; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.partner-logo {
  background: var(--surface);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,148,136,0.08);
  transition: transform 0.3s ease;
}

.partner-logo:hover { transform: translateY(-4px); }

.logo-placeholder {
  font-weight: 700;
  font-size: 22px;
  color: var(--primary-color);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13,148,136,0.08), rgba(20,184,166,0.08));
  border-radius: 10px;
  margin-bottom: 12px;
}

.partner-logo p {
  color: var(--text-light);
  font-size: 13px;
  margin: 0;
}

/* ============================================================
   TECHNOLOGY / SKILLS SECTION
   ============================================================ */
.skills {
  padding: 80px 0;
  background: var(--bg-light);
}

.skills .section-title { margin-bottom: 48px; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.skill-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,148,136,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.skill-card h3 {
  color: var(--primary-color);
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 2px solid rgba(13,148,136,0.15);
  padding-bottom: 12px;
}

.skill-card ul { list-style: none; }

.skill-card li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-card li::before {
  content: '▸';
  color: var(--primary-color);
  font-size: 12px;
  flex-shrink: 0;
}

.skill-card li:last-child { border-bottom: none; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 80px 0;
  background: var(--surface);
}

.about .section-title { margin-bottom: 40px; }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-text ul { list-style: none; margin-top: 16px; }

.about-text li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
}

.about-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   TEAM SECTION (V2 — clickable cards)
   ============================================================ */
.team {
  padding: 80px 0;
  background: var(--bg-surface);
}

.team .section-title   { margin-bottom: 12px; }
.team .section-subtitle { margin-bottom: 48px; }

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

.team-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,148,136,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-link:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.member-avatar-wrap {
  position: relative;
  overflow: hidden;
}

.member-avatar-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.team-card-link:hover .member-avatar-wrap img {
  transform: scale(1.05);
}

.member-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,148,136,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.member-info {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-info h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.member-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-bio {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.member-tags span {
  background: var(--bg-light);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(13,148,136,0.2);
}

/* ============================================================
   FAQ SECTION — always open for SEO
   ============================================================ */
.faq {
  padding: 80px 0;
  background: var(--surface);
}

.faq .section-title { margin-bottom: 48px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(480px, 100%), 1fr));
  gap: 24px;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

/* ============================================================
   CONNECT / SOCIAL SECTION
   ============================================================ */
.connect {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center;
}

.connect .section-title { color: #fff; margin-bottom: 10px; }
.connect .section-subtitle { color: rgba(255,255,255,0.85); margin-bottom: 48px; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  padding: 28px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

.social-icon { font-size: 30px; }

/* ============================================================
   MAIN CONTACT FORM SECTION
   ============================================================ */
.contact {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact .section-title { margin-bottom: 40px; }

.contact-form {
  max-width: 620px;
  margin: 0 auto;
  background: var(--surface);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13,148,136,0.1);
}

.form-group { margin-bottom: 20px; }

/* Inline form feedback message */
.form-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.form-msg--ok  { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-msg--err { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.15);
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #0d1f1d 0%, #111 100%);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 70px 0 50px;
}

.footer-brand h3,
.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-size: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-contact p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
}

.footer-newsletter p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--secondary-color); }

.newsletter-form .btn {
  flex-shrink: 0;
  min-width: 120px;
  padding: 12px 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin: 0;
}

/* ============================================================
   INDIVIDUAL PROFILE PAGES
   ============================================================ */
.profile-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.profile-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.profile-hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.profile-avatar-large {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.profile-hero-inner h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.profile-role-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.profile-hero-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.profile-social { display: flex; gap: 12px; flex-wrap: wrap; }

.profile-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s;
}

.profile-social a:hover { background: rgba(255,255,255,0.22); }

/* Profile Stats Bar */
.profile-stats-bar {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0;
}

.profile-stats-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 0;
}

.profile-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.12);
}

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

.profile-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.profile-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* Profile body */
.profile-body {
  padding: 70px 0;
  background: var(--bg-surface);
}

.profile-section {
  margin-bottom: 40px;
}

.profile-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(13,148,136,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.profile-about-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,148,136,0.08);
}

.profile-about-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.profile-about-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* Skills grid */
.profile-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.profile-skill {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

.profile-skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.profile-skill-header span:first-child {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.profile-skill-header span:last-child {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.profile-skill-bar {
  height: 6px;
  background: rgba(13,148,136,0.12);
  border-radius: 3px;
  overflow: hidden;
}

.profile-skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

/* Projects grid */
.profile-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.profile-project-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,148,136,0.08);
  transition: transform 0.3s ease;
}

.profile-project-card:hover { transform: translateY(-4px); }

.profile-project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.profile-project-info { padding: 20px 22px; }

.profile-project-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.profile-project-info p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.profile-tag {
  background: var(--bg-light);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(13,148,136,0.2);
}

/* Profile CTA */
.profile-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 70px 0;
  text-align: center;
  color: #fff;
}

.profile-cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}

.profile-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 28px;
}

.profile-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0f2027 0%, #1a3a35 50%, #0D9488 100%);
  padding: 80px 0 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(20,184,166,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.page-hero h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.7;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
  counter-reset: step;
}

.process-step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,148,136,0.1);
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: rgba(13,148,136,0.18);
  margin-bottom: 10px;
  line-height: 1;
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: var(--primary-color);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #134e4a 0%, #0f766e 100%);
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-title    { font-size: 44px; }
  .section-title { font-size: 34px; }
  .footer-top    { grid-template-columns: 1fr 1fr 1fr; }
  .footer-newsletter { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .header .container { padding: 0.85rem 16px; }

  .nav-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: none;
    z-index: 1100;
    border-top: none;
    padding-top: 72px;
    overflow-y: auto;
  }

  .nav-list.active { display: flex; }

  .nav-item { border-bottom: 1px solid rgba(13,148,136,0.08); }

  .nav-link {
    display: block;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .nav-link:hover,
  .nav-link.active { color: var(--primary-color); background: rgba(13,148,136,0.04); }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1200;
  }

  /* Highlight Contact nav link as a CTA button in mobile menu */
  .nav-item:last-child .nav-link {
    margin: 20px 24px 40px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff !important;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
  }

  .nav-item:last-child .nav-link:hover { opacity: 0.9; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); }

  /* Hero */
  .hero { padding: 60px 0 40px; }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 18px; }

  .hero-float-card--a { bottom: 20px; left: 10px; }
  .hero-float-card--b { top: 16px; right: 10px; }

  /* Quick contact */
  .hero-quick-contact .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-quick-label { white-space: normal; }

  /* Sections */
  .section-title { font-size: 30px; }

  .about-content { grid-template-columns: 1fr; gap: 2rem; }

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

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

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

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

  .footer-brand { grid-column: 1 / -1; }

  .footer-newsletter { grid-column: 1 / -1; }

  /* Profile page */
  .profile-hero-inner { flex-direction: column; text-align: center; gap: 24px; }
  .profile-social { justify-content: center; }
  .profile-stats-inner { flex-wrap: wrap; }
  .profile-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 16px 0; }
  .profile-stat:last-child { border-bottom: none; }
  .profile-about-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 34px; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .logo { font-size: 22px; }

  .hero { padding: 48px 0 32px; }
  .hero-title { font-size: 30px; }
  .hero-badge { font-size: 11px; padding: 5px 14px; }

  .hero-stats { gap: 8px; }
  .stat-num { font-size: 18px; }
  .stat-label { font-size: 11px; }
  .hero-stat { padding: 0 12px; }

  .hero-cta-row { flex-direction: column; gap: 10px; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline { width: 100%; text-align: center; }

  .hero-float-card { display: none; }

  .hero-quick-form { flex-direction: column; }
  .hero-quick-form input,
  .hero-quick-form .btn { width: 100%; }

  .section-title { font-size: 26px; }

  .btn { padding: 12px 24px; font-size: 14px; }
  .btn-sm { padding: 8px 16px; font-size: 13px; }

  .contact-form { padding: 28px 20px; }

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

  .social-btn { padding: 18px 24px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form .btn { width: 100%; }

  .profile-stat { flex: 0 0 100%; }
  .profile-about-grid { grid-template-columns: 1fr; }
  .profile-hero-inner h1 { font-size: 26px; }
  .profile-avatar-large { width: 120px; height: 120px; }

  .page-hero { padding: 50px 0 36px; }
  .page-hero h1 { font-size: 26px; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 18px 20px; }

  .cta-section h2 { font-size: 26px; }
  .profile-cta h2 { font-size: 26px; }
}

/* ============================================================
   RESPONSIVE — 360px
   ============================================================ */
@media (max-width: 360px) {
  .hero-title     { font-size: 26px; }
  .section-title  { font-size: 22px; }
  .btn            { padding: 10px 18px; font-size: 13px; }
}

/* ============================================================
   HEADER CONTENT
   ============================================================ */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

/* ============================================================
   BUTTONS — ALIASES & MODIFIERS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
  color: #fff;
}
.btn-large { padding: 16px 40px; font-size: 16px; }
.btn-full  { width: 100%; display: block; text-align: center; }

/* ============================================================
   HERO LAYOUT
   ============================================================ */
.hero-grid { display: contents; }
.hero-image { position: relative; }
.dashboard-preview {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13,148,136,0.15);
}
.dashboard-preview img { width: 100%; height: auto; display: block; border-radius: 20px; }

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.why-choose { padding: 60px 0 70px; background: var(--surface); }
.why-choose .section-title { margin-bottom: 14px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg-surface);
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(13,148,136,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,148,136,0.12); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; margin: 0 auto 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p  { color: var(--text-light); font-size: 14px; line-height: 1.75; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { padding: 80px 0; background: var(--bg-surface); }
.services .section-title    { margin-bottom: 14px; }
.services .section-subtitle { margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--surface); padding: 36px 32px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 1px solid rgba(13,148,136,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(13,148,136,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary-color); margin-bottom: 20px;
}
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-card p  { color: var(--text-light); font-size: 14px; line-height: 1.75; }

/* ============================================================
   SECTION HEADER (title + see-all link)
   ============================================================ */
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 48px;
}
.section-header .section-title { margin-bottom: 0; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary-color); text-decoration: none;
  font-weight: 700; font-size: 14px;
  transition: gap 0.2s ease; white-space: nowrap;
}
.link-arrow:hover { gap: 10px; }

/* ============================================================
   PROJECT CARD CONTENT
   ============================================================ */
.project-content { padding: 22px 24px 24px; }
.project-content h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.project-content p  { color: var(--text-light); font-size: 14px; line-height: 1.75; }

/* ============================================================
   PARTNERS LOGOS
   ============================================================ */
.partners-logos {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center; gap: 20px; margin-bottom: 24px;
}
.partners-logos .partner-logo {
  background: var(--bg-surface); padding: 12px 26px; border-radius: 10px;
  font-weight: 700; font-size: 15px; color: var(--text-light);
  border: 1px solid rgba(0,0,0,0.08); transition: color 0.3s, border-color 0.3s, transform 0.3s; box-shadow: none;
}
.partners-logos .partner-logo:hover { color: var(--primary-color); border-color: rgba(13,148,136,0.4); transform: translateY(-2px); }
.results-badge { text-align: center; margin-top: 4px; }
.results-badge span {
  display: inline-block; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff; padding: 8px 28px; border-radius: 50px;
  font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px;
}

/* ============================================================
   TECH STACK SECTION
   ============================================================ */
.tech-stack { padding: 80px 0; background: var(--bg-light); }
.tech-stack .section-title    { margin-bottom: 14px; }
.tech-stack .section-subtitle { margin-bottom: 48px; }
.stack-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px;
}
.stack-column {
  background: var(--surface); padding: 32px; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.1); transition: transform 0.3s ease;
}
.stack-column:hover { transform: translateY(-4px); }
.stack-column h3 {
  color: var(--primary-color); font-size: 17px; font-weight: 700;
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid rgba(13,148,136,0.15);
}
.stack-column ul { list-style: none; }
.stack-column li {
  padding: 8px 0; color: var(--text-light); font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; gap: 8px;
}
.stack-column li::before { content: '▸'; color: var(--primary-color); font-size: 12px; flex-shrink: 0; }
.stack-column li:last-child { border-bottom: none; }

/* ============================================================
   EXCELLENCE SECTION
   ============================================================ */
.excellence { padding: 80px 0; background: var(--surface); }
.excellence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.excellence-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.excellence-content h2 {
  font-size: 36px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; letter-spacing: -0.5px;
}
.excellence-content > p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
.checklist { list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.checklist li i { color: var(--primary-color); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.checklist li strong { display: block; font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.checklist li p { color: var(--text-light); font-size: 14px; line-height: 1.6; margin: 0; }

/* ============================================================
   TEAM SECTION (index.html version)
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.team-member {
  background: var(--surface); border-radius: var(--radius-lg); padding: 36px 24px;
  text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.member-avatar {
  width: 90px; height: 90px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 16px; border: 3px solid rgba(13,148,136,0.2);
}
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-member h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.member-role { font-size: 13px; color: var(--primary-color); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================================
   FAQ LIST
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-list .faq-item {
  background: var(--bg-surface); border-radius: var(--radius);
  border-left: 4px solid var(--primary-color); padding: 22px 24px; box-shadow: var(--shadow);
}
button.faq-question {
  background: none; border: none; cursor: pointer; width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 0; margin-bottom: 0; font-size: 17px; font-weight: 700; color: var(--text-dark); font-family: inherit;
}
button.faq-question i { flex-shrink: 0; color: var(--primary-color); font-size: 14px; transform: rotate(180deg); }
.faq-item button.faq-question ~ .faq-answer { display: block; padding-top: 12px; }

/* ============================================================
   CONTACT INFO & SERVICES (index.html)
   ============================================================ */
.contact-info h2 { font-size: 36px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; letter-spacing: -0.5px; }
.contact-info > p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
.contact-services h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-label {
  display: flex; align-items: center; gap: 8px; background: var(--bg-surface);
  border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 8px 14px;
  cursor: pointer; font-size: 14px; font-weight: 500; color: var(--text-dark);
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-label:hover { border-color: var(--primary-color); background: var(--bg-light); }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary-color); cursor: pointer; }

/* ============================================================
   FOOTER GRID
   ============================================================ */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 60px 0 40px; }
.footer-logo {
  font-size: 22px; font-weight: 800; color: var(--secondary-color);
  text-decoration: none; letter-spacing: -0.5px; display: block; margin-bottom: 14px;
}
.footer-column > p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer-social a:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.footer-column h4 { color: var(--secondary-color); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-column ul a:hover { color: rgba(255,255,255,0.95); }

/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-page-section { padding: 70px 0; background: var(--bg-surface); }
.contact-details { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem; align-items: start; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px; background: var(--surface);
  border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow);
  border: 1px solid rgba(13,148,136,0.08); margin-bottom: 16px; transition: transform 0.3s ease;
}
.contact-card:hover { transform: translateY(-3px); }
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0;
}
.contact-card-text h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-card-text a { color: var(--primary-color); text-decoration: none; font-size: 14px; font-weight: 600; display: block; margin-bottom: 2px; }
.contact-card-text p { color: var(--text-light); font-size: 13px; margin: 0; line-height: 1.5; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; background: var(--bg-surface);
  border: 1.5px solid rgba(13,148,136,0.2); color: var(--primary-color); font-size: 16px;
  text-decoration: none; transition: all 0.3s ease; margin-right: 6px; margin-bottom: 6px;
}
.social-link:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

/* ============================================================
   SERVICE DETAIL CARDS (solutions.html)
   ============================================================ */
.service-detail-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08); border-left: 5px solid var(--primary-color);
  transition: box-shadow 0.3s ease;
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); }
.service-detail-card h3 {
  font-size: 24px; font-weight: 800; color: var(--text-dark);
  margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.service-detail-card h3 i { color: var(--primary-color); }
.service-detail-card > p { color: var(--text-light); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.service-detail-card .service-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0; list-style: none; margin: 0; flex: none;
}
.service-feature-item {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-light);
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.service-feature-item:last-child { border-bottom: none; }
.service-feature-item i { color: var(--primary-color); font-size: 13px; flex-shrink: 0; }

/* ============================================================
   PROCESS SECTION (solutions.html)
   ============================================================ */
.process-section { padding: 80px 0; background: var(--bg-surface); }
.process-section .section-title    { margin-bottom: 14px; }
.process-section .section-subtitle { margin-bottom: 48px; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff; font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}

/* ============================================================
   TESTIMONIALS (solutions.html)
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 48px; }
.testimonial-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08); transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { font-size: 20px; color: #f59e0b; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--text-light); font-size: 15px; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-author-name { display: block; font-weight: 700; font-size: 15px; color: var(--text-dark); }
.testimonial-author-role { display: block; font-size: 13px; color: var(--text-light); }

/* stat-item h3 variant */
.stat-item h3 { display: block; font-size: 44px; font-weight: 900; line-height: 1; color: #fff; margin: 0 0 8px; }
.stat-item p  { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; margin: 0; }

/* ============================================================
   CTA BUTTONS (generic)
   ============================================================ */
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero .cta-buttons { margin-top: 28px; }

/* ============================================================
   ABOUT PAGE — SKILL BARS
   ============================================================ */
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 48px; }
.skill-item { margin-bottom: 20px; }
.skill-label { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.skill-label span:last-child { color: var(--primary-color); font-weight: 700; }
.skill-bar { height: 7px; background: rgba(13,148,136,0.12); border-radius: 4px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); border-radius: 4px; }

/* ============================================================
   ABOUT PAGE — VALUES GRID
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 48px; }
.value-card {
  background: var(--surface); padding: 36px 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(13,148,136,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary-color); margin-bottom: 18px;
}
.value-card h3 { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.value-card p  { color: var(--text-light); font-size: 14px; line-height: 1.75; }

/* ============================================================
   ABOUT PAGE — TIMELINE
   ============================================================ */
.timeline-section { padding: 80px 0; background: var(--bg-surface); }
.timeline-section .section-title    { margin-bottom: 14px; }
.timeline-section .section-subtitle { margin-bottom: 48px; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)); border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -38px; top: 6px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary-color); border: 3px solid #fff; box-shadow: 0 0 0 3px rgba(13,148,136,0.2);
}
.timeline-year {
  display: block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--primary-color); margin-bottom: 6px;
}
.timeline-content h3 { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.timeline-content p  { color: var(--text-light); font-size: 14px; line-height: 1.8; }

/* ============================================================
   TECHNOLOGY PAGE — TECH CATEGORIES
   ============================================================ */
.tech-categories-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 48px;
}
.tech-category {
  background: var(--surface); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tech-category:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tech-category h3 {
  font-size: 17px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.tech-category h3 i { color: var(--primary-color); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag {
  background: var(--bg-light); color: var(--primary-color); font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 50px; border: 1px solid rgba(13,148,136,0.2); transition: background 0.2s, color 0.2s;
}
.tech-tag:hover { background: var(--primary-color); color: #fff; }

/* ============================================================
   PRODUCTS PAGE — PORTFOLIO
   ============================================================ */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin-top: 48px; }
.portfolio-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.portfolio-card-image { position: relative; overflow: hidden; }
.portfolio-card-image img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.portfolio-card:hover .portfolio-card-image img { transform: scale(1.05); }
.portfolio-card-overlay {
  position: absolute; inset: 0; background: rgba(13,148,136,0.85);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card-overlay a {
  color: #fff; text-decoration: none; font-weight: 700; font-size: 15px;
  border: 2px solid rgba(255,255,255,0.7); padding: 10px 24px; border-radius: 8px; transition: background 0.2s;
}
.portfolio-card-overlay a:hover { background: rgba(255,255,255,0.15); }
.portfolio-card-content { padding: 24px; }
.portfolio-card-content h3 { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.portfolio-card-content p  { color: var(--text-light); font-size: 14px; line-height: 1.75; margin-bottom: 16px; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.portfolio-tag {
  background: var(--bg-light); color: var(--primary-color); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(13,148,136,0.2);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-section { padding: 80px 0; background: var(--bg-surface); }
.blog-section .section-title    { margin-bottom: 14px; }
.blog-section .section-subtitle { margin-bottom: 48px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image { overflow: hidden; }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-content { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-tag {
  display: inline-block; background: rgba(13,148,136,0.1); color: var(--primary-color);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px; border: 1px solid rgba(13,148,136,0.2);
}
.blog-card-content h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card-content > p { color: var(--text-light); font-size: 14px; line-height: 1.75; margin-bottom: 16px; flex: 1; }
.blog-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--text-light); margin-bottom: 16px; }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--primary-color); }
.read-more {
  display: inline-flex; align-items: center; gap: 6px; color: var(--primary-color);
  text-decoration: none; font-weight: 700; font-size: 14px; transition: gap 0.2s ease; margin-top: auto;
}
.read-more:hover { gap: 10px; }

.newsletter-section {
  padding: 70px 0; background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center; color: #fff;
}
.newsletter-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.newsletter-section p  { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.newsletter-section .newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-section .newsletter-form input {
  flex: 1; min-width: 200px; padding: 13px 18px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.15); color: #fff; font-size: 14px;
}
.newsletter-section .newsletter-form input::placeholder { color: rgba(255,255,255,0.65); }
.newsletter-section .newsletter-form input:focus { outline: none; border-color: rgba(255,255,255,0.7); }
.newsletter-section .newsletter-form button {
  padding: 13px 28px; border: none; border-radius: 10px; background: #fff;
  color: var(--primary-color); font-weight: 700; font-size: 15px; cursor: pointer; transition: background 0.3s;
}
.newsletter-section .newsletter-form button:hover { background: var(--bg-light); }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > .footer-column:first-child { grid-column: 1 / -1; }
  .excellence-grid { gap: 2.5rem; }
  .skills-grid { gap: 1.5rem; }
}

@media (max-width: 768px) {
  .hero-grid { display: block; }
  .hero .container { display: block; }
  .hero-image { margin-top: 2rem; }
  .excellence-grid { grid-template-columns: 1fr; gap: 2rem; }
  .excellence-image { order: -1; }
  .contact-details { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > .footer-column:first-child { grid-column: 1 / -1; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .skills-grid { grid-template-columns: 1fr; }
  .tech-categories-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-detail-card { padding: 28px 22px; }
  .service-detail-card .service-features { grid-template-columns: 1fr; }
  .newsletter-section .newsletter-form { flex-direction: column; }
  .newsletter-section .newsletter-form input,
  .newsletter-section .newsletter-form button { width: 100%; }
}

@media (max-width: 480px) {
  .hero-image { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .excellence-grid { gap: 1.5rem; }
  .timeline { padding-left: 24px; }
  .timeline-dot { left: -30px; }
  .service-detail-card { padding: 22px 18px; }
  .service-detail-card h3 { font-size: 19px; }
  .values-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn-white,
  .cta-buttons .btn-outline-white { text-align: center; }
}

/* ============================================================
   TEAM MEMBER — link wrapper
   ============================================================ */
a.team-member {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.team-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

a.team-member h3 {
  color: var(--text-dark);
}

/* ============================================================
   QUICK CONTACT STRIP
   ============================================================ */
.quick-contact-strip {
  background: linear-gradient(135deg, #0c7a72 0%, var(--primary-color) 60%, #0a6b62 100%);
  padding: 22px 0;
  border-top: none;
}

.quick-contact-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.quick-contact-heading {
  flex: 0 0 auto;
  min-width: 220px;
}

.quick-contact-heading h2 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.quick-contact-heading p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

.quick-contact-form {
  flex: 1 1 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.quick-contact-form input {
  flex: 1 1 150px;
  padding: 11px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: background 0.2s;
}

.quick-contact-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

.quick-contact-form input:focus {
  background: rgba(255,255,255,0.25);
}

.quick-contact-form .btn-white {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .quick-contact-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .quick-contact-form { width: 100%; }
  .quick-contact-form input { flex: 1 1 100%; }
  .quick-contact-form .btn-white { width: 100%; text-align: center; }
}

/* ============================================================
   STICKY BOTTOM CONTACT STRIP (fixed — always visible on load)
   ============================================================ */
.sticky-contact-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(90deg, #0a6b62 0%, var(--primary-color) 50%, #0c7a72 100%);
  box-shadow: 0 -4px 24px rgba(13,148,136,0.35);
  padding: 12px 0;
}

body.has-sticky-strip {
  padding-bottom: 68px;
}

.sticky-strip-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.sticky-strip-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
}

.sticky-strip-heading i {
  color: #fbbf24;
  font-size: 15px;
}

.sticky-strip-form {
  flex: 1 1 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: none;
  margin: 0;
}

.sticky-strip-form input {
  flex: 1 1 120px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 7px;
  font-size: 13px;
  outline: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  min-width: 0;
  transition: background 0.2s, border-color 0.2s;
}

.sticky-strip-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.sticky-strip-form input:focus {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}

.sticky-strip-form button {
  flex-shrink: 0;
  padding: 9px 20px;
  background: #fff;
  color: var(--primary-color);
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-strip-form button:hover {
  background: var(--bg-light);
  transform: translateY(-1px);
}

.sticky-strip-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
}

.sticky-strip-close:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .sticky-strip-inner { flex-wrap: wrap; gap: 10px; }
  .sticky-strip-heading { font-size: 13px; }
  .sticky-strip-form input { flex: 1 1 80px; }
  body.has-sticky-strip { padding-bottom: 130px; }
}

@media (max-width: 480px) {
  .sticky-contact-strip { padding: 10px 0; }
  .sticky-strip-heading { display: none; }
  .sticky-strip-form { flex-wrap: wrap; }
  .sticky-strip-form input { flex: 1 1 100%; }
  .sticky-strip-form button { width: 100%; justify-content: center; }
  body.has-sticky-strip { padding-bottom: 160px; }
}

/* ============================================================
   PAGE HERO — inner pages (solutions, about, products, etc.)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a6b62 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb span[aria-current] { color: rgba(255,255,255,0.9); }

.page-hero h1 {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   STATS SECTION (products.html)
   ============================================================ */
.stats-section {
  background: var(--surface);
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 20px;
  border-right: 1px solid var(--border-color);
}

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

.stat-item h3 {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 32px; }
  .page-hero p  { font-size: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-color); }
  .stat-item:nth-child(even) { border-left: 1px solid var(--border-color); }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 26px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PROFILE HERO (team pages)
   ============================================================ */
.profile-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a6b62 100%);
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}

.profile-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.profile-hero-inner {
  display: flex;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.profile-avatar-large {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.35);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.profile-hero-text h1 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.profile-hero-text p {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 20px;
}

.profile-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}

.profile-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}

.profile-social a:hover { background: rgba(255,255,255,0.25); }

/* Stats bar */
.profile-stats-bar {
  background: #0a6b62;
  padding: 0;
}

.profile-stats-inner {
  display: flex;
  justify-content: space-around;
}

.profile-stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.profile-stat strong {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.profile-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Profile body sections */
.profile-section { padding: 56px 0; border-bottom: 1px solid var(--border-color); }
.profile-section:last-of-type { border-bottom: none; }

.profile-section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
}

.profile-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.profile-about-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.profile-about-text p {
  color: var(--text-light);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}

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

.profile-skill {
  background: var(--bg-surface);
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.profile-skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.profile-skill-header span:last-child { color: var(--primary-color); font-weight: 700; }

.profile-skill-bar {
  height: 6px;
  background: rgba(13,148,136,0.12);
  border-radius: 3px;
  overflow: hidden;
}

.profile-skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

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

.profile-project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  background: var(--surface);
  transition: transform 0.3s, box-shadow 0.3s;
}

.profile-project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.profile-project-card img { width: 100%; height: 180px; object-fit: cover; display: block; }

.profile-project-info { padding: 18px 20px; }
.profile-project-info h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.profile-project-info p  { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }

.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.profile-tag {
  padding: 3px 10px;
  background: rgba(13,148,136,0.08);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(13,148,136,0.2);
}

/* Profile CTA */
.profile-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a6b62 100%);
  padding: 64px 0;
  text-align: center;
}

.profile-cta h2 { font-size: 34px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.profile-cta p  { color: rgba(255,255,255,0.82); font-size: 16px; margin-bottom: 28px; }

@media (max-width: 768px) {
  .profile-hero-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .profile-avatar-large { width: 100px; height: 100px; }
  .profile-hero-text h1 { font-size: 26px; }
  .profile-stats-inner { flex-wrap: wrap; }
  .profile-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .profile-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .profile-about-grid { grid-template-columns: 1fr; gap: 24px; }
  .profile-skills-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-projects-grid { grid-template-columns: 1fr; }
}

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

/* ============================================================
   FEATURED PROJECTS — fix orphan card (force 3-col)
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

/* ============================================================
   PARTNERS SECTION — clean up
   ============================================================ */
.partners { padding: 40px 0; background: var(--bg-surface); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
}

.partner-logo {
  font-size: 18px;
  font-weight: 800;
  color: #b0bec5;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 0;
  transition: color 0.2s;
}

.partner-logo:hover { color: var(--primary-color); }

.results-badge { display: none; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-logos span {
  font-size: 15px;
  font-weight: 800;
  color: #c4cdd6;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.trust-logos span:hover { color: var(--primary-color); }

/* ============================================================
   WHY CHOOSE — NEW SPLIT LAYOUT
   ============================================================ */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.why-choose-left h2 {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.why-choose-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.why-choose-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.why-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(13,148,136,0.3);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.why-item h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.why-item p  { font-size: 14px; color: var(--text-light); line-height: 1.65; margin: 0; }

@media (max-width: 900px) {
  .why-choose-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-choose-left h2 { font-size: 30px; }
}

/* ============================================================
   SERVICE CARD — ACCENT BAR + LINK
   ============================================================ */
.service-card { position: relative; overflow: hidden; }
.service-card-accent { height: 4px; position: absolute; top: 0; left: 0; right: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  margin-top: 16px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ============================================================
   PROCESS (HOW WE WORK)
   ============================================================ */
.process {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 60%, #f0fdf4 100%);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  flex-wrap: nowrap;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(13,148,136,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-color);
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(13,148,136,0.12);
  transition: background 0.3s, transform 0.3s;
}

.process-step:hover .process-icon {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.08);
}

.process-step h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.process-step p  { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.process-connector {
  flex-shrink: 0;
  padding-top: 52px;
  color: rgba(13,148,136,0.35);
  font-size: 18px;
}

@media (max-width: 768px) {
  .process-steps { flex-direction: column; align-items: center; gap: 32px; }
  .process-connector { padding-top: 0; transform: rotate(90deg); }
}

/* ============================================================
   PROJECT CARDS — TAGS + OVERLAY
   ============================================================ */
.project-card { position: relative; overflow: hidden; }
.project-image { position: relative; overflow: hidden; }
.project-image img { transition: transform 0.5s ease; }
.project-card:hover .project-image img { transform: scale(1.04); }

.project-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
}

.project-category {
  background: rgba(13,148,136,0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  backdrop-filter: blur(4px);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.project-tags span {
  padding: 3px 10px;
  background: var(--bg-surface);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(13,148,136,0.2);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 80px 0;
  background: var(--bg-surface);
}

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

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-card--featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a6b62 100%);
  border-color: transparent;
}

.testimonial-card--featured .testimonial-quote { color: rgba(255,255,255,0.9); }
.testimonial-card--featured .testimonial-stars { color: #fbbf24; }
.testimonial-card--featured .testimonial-author strong { color: #fff; }
.testimonial-card--featured .testimonial-author span { color: rgba(255,255,255,0.7); }

.testimonial-stars {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.testimonial-card--featured .testimonial-author { border-color: rgba(255,255,255,0.2); }

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(13,148,136,0.2);
}

.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testimonial-author span  { font-size: 12px; color: var(--text-light); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: auto; }
}

/* ============================================================
   TECH CATEGORIES (new layout)
   ============================================================ */
.tech-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.tech-category {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tech-category:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.tech-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.tech-cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.tech-category-header h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 0; }

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pills span {
  padding: 5px 12px;
  background: var(--bg-surface);
  color: var(--text-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: background 0.2s, color 0.2s;
}

.tech-pills span:hover {
  background: rgba(13,148,136,0.08);
  color: var(--primary-color);
  border-color: rgba(13,148,136,0.3);
}

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

/* ============================================================
   EXCELLENCE — floating badge on image
   ============================================================ */
.excellence-image { position: relative; }
.excellence-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.excellence-img-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--surface);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.excellence-img-badge i { color: var(--primary-color); font-size: 20px; }
.excellence-img-badge span strong { display: block; }

@media (max-width: 768px) {
  .excellence-img-badge { right: 12px; bottom: 12px; }
}

/* ============================================================
   HERO — floating project badge on image
   ============================================================ */
.dashboard-preview { position: relative; }

.hero-float-badge {
  position: absolute;
  bottom: -14px;
  left: 20px;
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  z-index: 2;
}

.hero-float-badge i { color: #10b981; font-size: 18px; }
.hero-float-badge span strong { display: block; font-size: 12px; }
.hero-float-badge span { font-size: 11px; color: var(--text-light); }

/* ============================================================
   TEAM CARDS — new layout with skills + footer
   ============================================================ */
.team-member {
  display: flex !important;
  flex-direction: column;
}

.team-member-top {
  background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%);
  padding: 28px 24px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(13,148,136,0.1);
}

a.team-member .member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(13,148,136,0.3);
}

a.team-member .member-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-member-body {
  padding: 20px 24px 16px;
  flex: 1;
}

.team-member-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-member-body .member-role { font-size: 13px; color: var(--primary-color); font-weight: 600; margin-bottom: 14px; }

.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.member-skills span {
  padding: 3px 10px;
  background: rgba(13,148,136,0.07);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(13,148,136,0.15);
}

.team-member-footer {
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

a.team-member:hover .team-member-footer { gap: 10px; }

/* ============================================================
   CONTACT — form improvements
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 24px;
}

.contact-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

.contact-bullet i { color: var(--primary-color); font-size: 16px; }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}


/* ============================================================
   SERVICE CARD — NEW BADGE
   ============================================================ */
.service-card { position: relative; }

.service-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 1;
}

.service-card-badge--geo {
  background: linear-gradient(135deg, #a855f7, #6366f1);
}

/* ============================================================
   SERVICE DETAIL CARDS — SEO & GEO ENHANCEMENTS
   ============================================================ */
.service-detail-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.service-detail-card:hover { box-shadow: var(--shadow-lg); }

.service-detail-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-detail-card h3 i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13,148,136,0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.service-detail-card p {
  color: var(--text-light);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-detail-card .service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin-top: 24px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.service-feature-item i { color: var(--primary-color); font-size: 13px; flex-shrink: 0; }

.service-detail-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
}

.service-detail-badge--new {
  background: linear-gradient(135deg, #a855f7, #6366f1);
}

.service-detail-card--seo {
  border-left: 4px solid #f97316;
}

.service-detail-card--seo h3 i {
  background: rgba(249,115,22,0.1);
  color: #f97316;
}

.service-detail-card--geo {
  border-left: 4px solid #a855f7;
}

.service-detail-card--geo h3 i {
  background: rgba(168,85,247,0.1);
  color: #a855f7;
}

.service-detail-note {
  background: rgba(13,148,136,0.06);
  border-left: 3px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
  padding: 12px 18px;
  font-size: 14px !important;
  color: var(--text-dark) !important;
  margin: 16px 0 !important;
  font-style: normal !important;
  line-height: 1.6 !important;
}

.service-detail-card--geo .service-detail-note {
  background: rgba(168,85,247,0.06);
  border-left-color: #a855f7;
}

/* SEO results bar */
.service-detail-results {
  display: flex;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}

.sdr-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid var(--border-color);
  background: var(--bg-surface);
}

.sdr-item:last-child { border-right: none; }

.sdr-item > i {
  color: #10b981;
  font-size: 20px;
  flex-shrink: 0;
}

.sdr-item div strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
}

.sdr-item div span {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 3px;
  display: block;
}

/* GEO platforms bar */
.service-geo-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.geo-platform {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(168,85,247,0.07);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #7c3aed;
  transition: background 0.2s;
}

.geo-platform:hover { background: rgba(168,85,247,0.14); }
.geo-platform i { font-size: 13px; }

@media (max-width: 768px) {
  .service-detail-card { padding: 28px 22px; }
  .service-detail-card .service-features { grid-template-columns: 1fr; }
  .service-detail-results { flex-direction: column; }
  .sdr-item { border-right: none; border-bottom: 1px solid var(--border-color); }
  .sdr-item:last-child { border-bottom: none; }
}

/* ============================================================
   PROFILE TIMELINE — Experience & Education
   ============================================================ */
.profile-timeline {
  position: relative;
  padding-left: 32px;
  max-width: 760px;
}

.profile-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), rgba(13,148,136,0.12));
}

.profile-timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.profile-timeline-item:last-child { margin-bottom: 0; }

.profile-timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--primary-color);
  flex-shrink: 0;
}

.profile-timeline-dot--edu {
  background: #a855f7;
  box-shadow: 0 0 0 2px #a855f7;
}

.profile-timeline-item--edu .profile-timeline-content {
  border-left: 3px solid rgba(168,85,247,0.25);
}

.profile-timeline-content {
  background: var(--surface, #fff);
  border: 1px solid var(--border-color);
  border-left: 3px solid rgba(13,148,136,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.profile-timeline-content:hover {
  box-shadow: 0 6px 24px rgba(13,148,136,0.10);
}

.profile-timeline-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.profile-timeline-company {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-color);
}

.profile-timeline-period {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.profile-timeline-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.profile-timeline-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 600px) {
  .profile-timeline { padding-left: 24px; }
  .profile-timeline-dot { left: -20px; }
  .profile-timeline-meta { flex-direction: column; align-items: flex-start; gap: 2px; }
}

/* ============================================================
   COMPREHENSIVE MOBILE FIXES
   ============================================================ */

/* 1 — Header: hide CTA button on phones so logo + hamburger have room */
@media (max-width: 768px) {
  .header-content > a.btn-primary,
  .header .header-content .btn-primary { display: none !important; }

  .header-content { gap: 0.75rem; }
}

/* 2 — Hero: proper 1-col stacking */
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-grid { display: block; }
  .hero-image { margin-top: 2rem; }
  .hero-cta-row { flex-direction: column; gap: 12px; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline { width: 100%; text-align: center; justify-content: center; }
}

/* 3 — Hero stats: hide dividers, wrap into 2x2 grid on phones */
@media (max-width: 480px) {
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 0; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; text-align: center; }
}

/* 4 — Trust bar: wrap logos on small screens */
@media (max-width: 600px) {
  .trust-bar .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-logos { gap: 14px; flex-wrap: wrap; }
  .trust-logos span { font-size: 12px; }
}

/* 5 — Services grids: force 1 column on phones */
@media (max-width: 480px) {
  .services-grid     { grid-template-columns: 1fr; }
  .services-grid-v2  { grid-template-columns: 1fr; }
  .service-card,
  .service-card-v2   { padding: 28px 22px; }
}

/* 6 — Contact form rows: stack inputs vertically on mobile */
@media (max-width: 640px) {
  .form-row { flex-direction: column; gap: 12px; }
  .form-row input,
  .form-row select,
  .form-row textarea { min-width: 0 !important; width: 100%; flex: none; }
  .contact-bullets { column-count: 1; }
}

/* 7 — Why choose section: reduce heading size */
@media (max-width: 480px) {
  .why-choose-left h2 { font-size: 26px; }
  .why-choose-desc { font-size: 15px; }
  .why-item { gap: 14px; }
  .why-icon { width: 44px; height: 44px; font-size: 18px; flex-shrink: 0; }
}

/* 8 — Team grid: 1 column on phones */
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .member-avatar img { width: 80px; height: 80px; }
}

/* 9 — Testimonials: ensure 1 column, no featured stretch */
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testimonial-card--featured { grid-column: span 1 !important; }
}

/* 10 — Process section: spacing on phones */
@media (max-width: 480px) {
  .process { padding: 56px 0; }
  .process-steps { gap: 24px; }
}

/* 11 — Excellence / About image section */
@media (max-width: 768px) {
  .excellence-grid { grid-template-columns: 1fr; gap: 2rem; }
  .excellence-image { order: -1; }
}

/* 12 — Page hero headings on inner pages */
@media (max-width: 480px) {
  .page-hero { padding: 44px 0 32px; }
  .page-hero h1 { font-size: 24px; }
  .page-hero p { font-size: 14px; }
}

/* 13 — Section title / subtitle / label spacing */
@media (max-width: 480px) {
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 14px; }
  .section-label { font-size: 10px; }
}

/* 14 — Footer: full 1-col on phones */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid > .footer-column:first-child { grid-column: auto; }
  .footer { padding: 48px 0 24px; }
}

/* 15 — Sticky strip padding fix: ensure content not hidden behind strip */
@media (max-width: 480px) {
  body.has-sticky-strip { padding-bottom: 155px; }
}

/* 16 — General section padding reduction on phones */
@media (max-width: 480px) {
  .why-choose,
  .services,
  .services-section,
  .team,
  .testimonials,
  .contact-section { padding: 56px 0; }
}

/* 17 — Btn sizes: prevent oversized buttons overflowing containers */
@media (max-width: 480px) {
  .btn-large { padding: 14px 28px; font-size: 15px; }
  .btn-primary { font-size: 14px; }
}

/* ============================================================
   ONEPLUS NORD 4 — 412px viewport specific fixes
   ============================================================ */

/* Hero stats: clean 2x2 grid, no dividers */
@media (max-width: 430px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
    padding: 20px 0;
  }
  .hero-stat { padding: 0; text-align: center; }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat-divider { display: none; }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 10px; }
}

/* Hero quick-contact strip: full-width stacked form at 412px */
@media (max-width: 430px) {
  .hero-quick-contact { padding: 20px 0; }
  .hero-quick-contact .container { flex-direction: column; gap: 12px; }
  .hero-quick-form { flex-direction: column; gap: 8px; width: 100%; }
  .hero-quick-form input,
  .hero-quick-form .btn { width: 100%; }
  .hero-quick-label { font-size: 13px; }
}

/* Newsletter section at 412px */
@media (max-width: 430px) {
  .newsletter-section { padding: 44px 0; }
  .newsletter-section h2 { font-size: 22px; }
  .newsletter-section p { font-size: 14px; }
  .newsletter-section .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-section .newsletter-form input,
  .newsletter-section .newsletter-form button { width: 100%; min-width: 0; }
}

/* Quick-contact section (inner pages) */
@media (max-width: 430px) {
  .quick-contact-strip { padding: 20px 0; }
  .quick-contact-inner { flex-direction: column; gap: 16px; }
  .quick-contact-heading { min-width: 0; width: 100%; }
  .quick-contact-form { width: 100%; flex-direction: column; gap: 8px; }
  .quick-contact-form input { flex: none; width: 100%; }
  .quick-contact-form .btn-white { width: 100%; text-align: center; }
}

/* Profile page avatar at 412px */
@media (max-width: 430px) {
  .profile-avatar-large { width: 100px; height: 100px; }
  .profile-hero { padding: 40px 0; }
  .profile-hero-inner h1 { font-size: 24px; }
  .profile-social { flex-wrap: wrap; gap: 8px; }
  .profile-social a { font-size: 13px; padding: 8px 14px; }
}

/* Trust bar at 412px: hide some logos to avoid overflow */
@media (max-width: 430px) {
  .trust-bar .container { gap: 8px; }
  .trust-logos { gap: 10px; }
  .trust-logos span { font-size: 11px; letter-spacing: 0; }
}

/* CTA section buttons at 412px */
@media (max-width: 430px) {
  .cta-section h2,
  .profile-cta h2 { font-size: 22px; }
  .cta-section p,
  .profile-cta p { font-size: 14px; }
  .cta-buttons { flex-direction: column; gap: 12px; align-items: stretch; }
  .cta-buttons .btn-white,
  .cta-buttons .btn-outline-white { text-align: center; }
}

/* Member cards at 412px */
@media (max-width: 430px) {
  .team-member-body { padding: 16px; }
  .member-skills span { font-size: 11px; padding: 3px 8px; }
}

/* FAQ at 412px */
@media (max-width: 430px) {
  .faq-question { font-size: 14px; padding: 16px 18px; }
  .faq-answer p { font-size: 13px; }
}

/* Why-choose items stacked tightly */
@media (max-width: 430px) {
  .why-choose-right { gap: 16px; }
  .why-item p { font-size: 13px; }
  .why-item h3 { font-size: 15px; }
}
