/* ============================================
   PROFOUND HRC — Static Website Stylesheet
   Converted from React/Tailwind to Vanilla CSS
   ============================================ */

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

/* =====================
   CSS CUSTOM PROPERTIES
   ===================== */
:root {
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Poppins', sans-serif;

  /* Colors */
  --color-primary: hsl(209, 64%, 16%);      /* Deep Navy #0F2A44 */
  --color-primary-rgb: 15, 42, 68;
  --color-secondary: hsl(220, 84%, 56%);    /* Royal Blue #2F6FED */
  --color-secondary-rgb: 47, 111, 237;
  --color-accent: hsl(169, 72%, 45%);       /* Teal #21C7A8 */
  --color-accent-rgb: 33, 199, 168;

  --color-background: hsl(216, 33%, 98%);
  --color-foreground: hsl(0, 0%, 10%);
  --color-card: hsl(0, 0%, 100%);
  --color-muted: hsl(220, 14%, 96%);
  --color-muted-foreground: hsl(220, 9%, 46%);
  --color-border: hsl(220, 13%, 91%);
  --color-primary-foreground: #ffffff;

  --radius: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid var(--color-border);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-sans);
  border: none;
  background: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-background); }
::-webkit-scrollbar-thumb { background: rgba(107, 114, 128, 0.3); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(15, 42, 68, 0.5); }

/* =====================
   UTILITY CLASSES
   ===================== */
.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* FadeIn animation utility */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.from-left {
  transform: translateX(-40px);
}

.fade-in.from-right {
  transform: translateX(40px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* =====================
   NAVBAR
   ===================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

#navbar.scrolled {
  background: rgba(216, 228, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 0.75rem 0;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.3s;
  flex-shrink: 0;
}

.nav-logo:hover .nav-logo-icon {
  box-shadow: 0 8px 20px rgba(47, 111, 237, 0.3);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: white;
  transition: color 0.3s;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

#navbar.scrolled .nav-logo-img {
  filter: none;
}

#navbar.scrolled .nav-logo-text {
  color: var(--color-primary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  position: relative;
  padding: 0.5rem 0;
}

#navbar.scrolled .nav-links a {
  color: var(--color-foreground);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

#navbar.scrolled .nav-links a.active {
  color: var(--color-secondary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  border-radius: 99px;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  color: white;
  transition: color 0.3s;
}

#navbar.scrolled .nav-hamburger {
  color: var(--color-foreground);
}

@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--color-card);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
}

#mobile-menu.open { display: flex; }

@media (min-width: 768px) {
  #mobile-menu { display: none !important; }
}

#mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--color-foreground);
  transition: background 0.2s, color 0.2s;
}

#mobile-menu a:hover {
  background: var(--color-muted);
}

#mobile-menu a.active {
  background: rgba(15, 42, 68, 0.05);
  color: var(--color-primary);
}

/* =====================
   PAGE HEADER BANNER
   ===================== */
.page-header {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: var(--color-primary);
  color: white;
  text-align: center;
}

@media (min-width: 1024px) {
  .page-header {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

.page-header-bg-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40%;
  height: 120%;
  background: var(--color-secondary);
  filter: blur(120px);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.page-header-bg-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: var(--color-accent);
  filter: blur(150px);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.page-header-content {
  position: relative;
  z-index: 10;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .page-header h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .page-header h1 { font-size: 3.75rem; } }

.page-header p {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}

@media (min-width: 768px) { .page-header p { font-size: 1.25rem; } }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  padding: 0 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: white;
  box-shadow: 0 8px 20px rgba(33, 199, 168, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(33, 199, 168, 0.35);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
}

.btn-white {
  background: white;
  color: var(--color-primary);
  font-weight: 700;
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 8px 20px rgba(33, 199, 168, 0.25);
}

.btn-accent:hover {
  background: rgba(33, 199, 168, 0.9);
  transform: translateY(-2px);
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn:hover svg.arrow { transform: translateX(3px); }

/* =====================
   SECTION LABELS
   ===================== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 68, 0.90);
  mix-blend-mode: multiply;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-primary), rgba(15,42,68,0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0 8rem;
  max-width: 48rem;
}

@media (min-width: 1024px) {
  .hero-content { padding: 8rem 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(33, 199, 168, 0.2);
  border: 1px solid rgba(33, 199, 168, 0.3);
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.hero-badge .dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}

.hero-badge .dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-accent);
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.hero h1 {
  font-size: 3rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 42rem;
}

@media (min-width: 768px) { .hero p { font-size: 1.25rem; } }

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta { flex-direction: row; }
}

/* =====================
   MARQUEE / TICKER
   ===================== */
.marquee-section {
  background-color: var(--color-primary);
  padding-top: 2.5rem;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 2.5rem;
}

.marquee-track {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 3rem 0;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  flex-shrink: 0;
}

.marquee-row-2 {
  display: flex;
  white-space: nowrap;
  animation: marquee2 25s linear infinite;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 3rem;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 3rem;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}

.marquee-item:hover {
  filter: grayscale(0);
  opacity: 1;
}

.marquee-item img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.3s, filter 0.3s;
}

.marquee-item:hover img {
  opacity: 1;
  filter: none;
}

.marquee-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.25rem;
}

.marquee-item-text {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
}

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

@keyframes marquee2 {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0%); }
}

/* =====================
   ABOUT PREVIEW
   ===================== */
.about-preview {
  padding: 6rem 0;
  background: var(--color-background);
  overflow: hidden;
}

.about-preview-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-preview-grid { grid-template-columns: 1fr 1fr; }
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  aspect-ratio: 4/5;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  max-width: 18rem;
  display: none;
}

@media (min-width: 768px) { .about-floating-card { display: block; } }

.about-floating-card .card-icon {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.about-floating-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-floating-card p {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.about-text h2 { color: var(--color-accent); }
.about-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin: 0.75rem 0 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) { .about-text h3 { font-size: 3rem; } }

.about-text > p {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--color-foreground);
}

.about-checklist li svg {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: color 0.2s;
}

.link-arrow:hover { color: var(--color-primary); }
.link-arrow svg { width: 1.25rem; height: 1.25rem; transition: transform 0.2s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* =====================
   SPECIALISATIONS
   ===================== */
.specialisations {
  padding: 6rem 0;
  background: var(--color-muted);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-foreground);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) { .spec-grid { grid-template-columns: repeat(4, 1fr); } }

.spec-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--color-card);
  border: 1px solid rgba(220, 224, 230, 0.5);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.spec-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(33, 199, 168, 0.3);
}

.spec-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(33, 199, 168, 0.05);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon svg { width: 1.5rem; height: 1.5rem; }

.spec-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-foreground);
}

@media (min-width: 768px) { .spec-card h4 { font-size: 1rem; } }

/* =====================
   STATS SECTION
   ===================== */
.stats-section {
  padding: 6rem 0;
  background: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(47,111,237,0.1) 0%, transparent 70%);
}

.stats-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  position: relative;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* =====================
   WHY CHOOSE US
   ===================== */
.why-section {
  padding: 6rem 0;
  background: var(--color-background);
}

.feature-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--color-card);
  border: 1px solid rgba(220, 224, 230, 0.5);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(33, 199, 168, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(33, 199, 168, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

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

.feature-icon svg { width: 1.5rem; height: 1.5rem; }

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-foreground);
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
  padding: 6rem 0;
  background: rgba(220, 224, 230, 0.3);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-testimonials 40s linear infinite;
}

@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-420px * 3 - 2rem * 3)); }
}

.testimonials:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 25rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-shrink: 0;
}

.quote-icon svg {
  width: 3rem;
  height: 3rem;
  color: rgba(33, 199, 168, 0.2);
}

.testimonial-text {
  color: var(--color-muted-foreground);
  font-style: italic;
  line-height: 1.75;
}

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

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47,111,237,0.2), rgba(33,199,168,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-accent);
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--color-foreground);
  font-size: 0.9375rem;
}

.testimonial-author-role {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =====================
   GLOBAL CTA SECTION
   ===================== */
.cta-section {
  padding: 5rem 1rem;
}

.cta-card {
  max-width: 64rem;
  margin: 0 auto;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  background-size: 400% 400%;
  animation: gradient-xy 15s ease infinite;
}

@keyframes gradient-xy {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-content {
  position: relative;
  z-index: 10;
  padding: 3rem;
  text-align: center;
  color: white;
}

@media (min-width: 768px) { .cta-content { padding: 5rem; } }

.cta-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) { .cta-content h2 { font-size: 3rem; } }

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   SERVICES PAGE
   ===================== */
.services-grid {
  display: grid;
  gap: 2rem;
  padding: 6rem 0;
}

@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--color-card);
  padding: 2rem;
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(220, 224, 230, 0.6);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(225deg, rgba(15,42,68,0.05), transparent);
  border-bottom-left-radius: 100%;
  transition: transform 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(47,111,237,0.4);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scale(1.1); }

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(15, 42, 68, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

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

.service-icon svg { width: 2rem; height: 2rem; }

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-muted-foreground);
  line-height: 1.75;
}

.services-cta {
  background: var(--color-primary);
  text-align: center;
  padding: 5rem 1rem;
}

.services-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .services-cta h2 { font-size: 2.5rem; } }

.services-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

/* =====================
   INDUSTRIES PAGE
   ===================== */
.industries-grid {
  display: grid;
  gap: 2.5rem;
  padding: 6rem 0;
}

@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }

.industry-card {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
  background: var(--color-card);
  border: 1px solid var(--color-border);
}

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

.industry-img {
  height: 12rem;
  overflow: hidden;
  position: relative;
}

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

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

.industry-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 68, 0.6);
  mix-blend-mode: multiply;
}

.industry-img-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.industry-img-icon svg { width: 1.5rem; height: 1.5rem; }

.industry-body { padding: 2rem; }

.industry-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
}

.industry-body p {
  color: var(--color-muted-foreground);
  line-height: 1.75;
}

/* =====================
   ABOUT PAGE
   ===================== */
.about-page { padding: 5rem 0; }

.about-who-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

@media (min-width: 1024px) {
  .about-who-grid { grid-template-columns: 1fr 1fr; }
}

.about-who-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .about-who-text h2 { font-size: 2.5rem; } }

.about-who-text p {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-who-img {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  aspect-ratio: 16/9;
}

.about-who-img img { width: 100%; height: 100%; object-fit: cover; }

.values-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 8rem;
}

@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  height: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
  transition: border-color 0.2s;
}

.value-card:hover { border-color: rgba(15,42,68,0.3); }

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-icon svg { width: 1.75rem; height: 1.75rem; }
.value-icon.primary { background: rgba(15,42,68,0.1); color: var(--color-primary); }
.value-icon.secondary { background: rgba(47,111,237,0.1); color: var(--color-secondary); }
.value-icon.accent { background: rgba(33,199,168,0.1); color: var(--color-accent); }

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

.value-card p {
  color: var(--color-muted-foreground);
  line-height: 1.75;
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-section { padding: 6rem 0; }

.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}

.contact-info {
  background: var(--color-primary);
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius-3xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.contact-info-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 16rem;
  height: 16rem;
  background: var(--color-secondary);
  filter: blur(80px);
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0.5;
}

.contact-info h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.contact-list li {
  display: flex;
  gap: 1rem;
}

.contact-list-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-list-icon svg { width: 1.5rem; height: 1.5rem; }

.contact-list h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-list p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.contact-form-card {
  background: var(--color-card);
  padding: 2rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) { .contact-form-card { padding: 3rem; } }

.contact-form-card h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-foreground);
}

/* =====================
   FORM ELEMENTS
   ===================== */
.form-grid-2 {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-foreground);
}

input, select, textarea {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  background: rgba(220, 224, 230, 0.4);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.15);
}

textarea {
  height: auto;
  min-height: 7.5rem;
  padding: 0.75rem 1rem;
  resize: vertical;
}

input[type="file"] {
  padding: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}

select { cursor: pointer; }

.form-hint {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  margin-top: 0.25rem;
}

.form-error {
  font-size: 0.75rem;
  color: hsl(0, 84%, 60%);
  margin-top: 0.25rem;
  display: none;
}

.form-submit {
  width: 100%;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 20px rgba(15, 42, 68, 0.25);
  transition: all 0.3s;
  margin-top: 1.5rem;
}

.form-submit:hover {
  box-shadow: 0 12px 28px rgba(15, 42, 68, 0.35);
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  background: rgba(33, 199, 168, 0.1);
  border: 1px solid rgba(33, 199, 168, 0.3);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--color-primary);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  color: rgba(255,255,255,0.8);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  letter-spacing: -0.025em;
}

.footer-desc { font-size: 0.875rem; line-height: 1.75; }

.footer-social { display: flex; gap: 1rem; }

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-4px);
}

.footer-social svg { width: 1.125rem; height: 1.125rem; }

.footer-col h4 {
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

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

.footer-contact ul { display: flex; flex-direction: column; gap: 1rem; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-made {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-made a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-made a:hover { color: white; }

.heart { color: #ef4444; fill: #ef4444; width: 0.75rem; height: 0.75rem; }

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

.footer-legal a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.footer-legal a:hover { color: white; }
