/* Corporate Professional Design System - Nordic Michaniki */

/* ========== DESIGN SYSTEM TOKENS ========== */
:root {
  /* Corporate Color Palette */
  --primary-color: #1a365d;
  --primary-hover: #2c5282;
  --primary-dark: #0f2744;
  --secondary-color: #4a5568;
  --secondary-light: #718096;
  --accent-color: #2b6cb0;
  
  --nordic-blue: #1a365d;
  --nordic-light-blue: #2b6cb0;
  --nordic-ice: #edf2f7;
  --nordic-steel: #4a5568;
  --nordic-forest: #276749;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f7fafc;
  --bg-dark: #1a202c;
  --bg-card: #ffffff;
  --bg-hero: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  --bg-nordic: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
  
  /* Text Colors */
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-white: #ffffff;
  --text-nordic-blue: #1a365d;
  
  /* Border Colors */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: #4a5568;
  --border-nordic: #1a365d;
  
  --linkedin-blue: #0077B5;
  --linkedin-hover: #005885;
  
  /* Typography Scale */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  --font-5xl: 3rem;
  --font-6xl: 3.75rem;
  
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Spacing System */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  
  /* Shadows - Subtle Corporate */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.03);
  --shadow-md: 0 2px 4px -1px rgb(0 0 0 / 0.06), 0 2px 4px -1px rgb(0 0 0 / 0.04);
  --shadow-lg: 0 4px 6px -1px rgb(0 0 0 / 0.06), 0 2px 4px -1px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 10px 15px -3px rgb(0 0 0 / 0.06), 0 4px 6px -2px rgb(0 0 0 / 0.04);
  --shadow-nordic: 0 4px 12px -2px rgba(26, 54, 93, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s ease;
}

/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden; /* prevent horizontal scroll only */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* ========== NAVIGATION ========== */
.navbar {
  background-color: var(--bg-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand a {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-6);
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: var(--font-medium);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  position: relative;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--nordic-blue);
  background-color: var(--nordic-ice);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background-color: var(--nordic-blue);
  border-radius: 1px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: var(--space-2);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--nordic-blue);
  margin: 3px 0;
  transition: var(--transition-fast);
  display: block;
}

/* ========== MAIN CONTENT ========== */
.main-content {
  margin-top: 70px;
}

.page {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  min-height: calc(100vh - 70px); /* subtract navbar height */
}

.page.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== HERO SECTION ========== */
.hero {
  background: var(--bg-nordic);
  color: var(--text-white);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-5xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-6);
  line-height: 1.2;
  text-shadow: none;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: var(--font-xl);
  margin-bottom: var(--space-8);
  opacity: 0.95;
  line-height: 1.6;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  font-weight: var(--font-semibold);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.hero-cta {
  font-size: var(--font-lg);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-lg);
}

/* ========== SECTION STYLES ========== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-size: var(--font-4xl);
  color: var(--nordic-blue);
  margin-bottom: var(--space-4);
  font-weight: var(--font-bold);
}

.section-header p {
  font-size: var(--font-xl);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== SERVICES ========== */
.services-overview {
  padding: var(--space-20) 0;
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background-color: var(--bg-card);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: var(--border-medium);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--nordic-blue);
  color: var(--text-white);
  border-radius: 50%;
  font-size: var(--font-2xl);
  font-weight: var(--font-bold);
  margin: 0 auto var(--space-4) auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: var(--font-2xl);
  color: var(--nordic-blue);
  margin-bottom: var(--space-4);
  font-weight: var(--font-semibold);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== WHY US ========== */
.why-us-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.why-us-card {
  width: 100%;
}

.why-us-item {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.why-us-item:hover {
  background-color: var(--nordic-ice);
  transform: translateY(-2px);
}

.why-us-item h3 {
  font-size: var(--font-2xl);
  color: var(--nordic-blue);
  margin-bottom: var(--space-4);
  font-weight: var(--font-semibold);
  min-height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== CLIENTS CAROUSEL ========== */
.clients-section {
  padding: 5rem 2rem;
  background: white;
  overflow: hidden;
}

.clients-carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

#clientsLogosTrack {
    display: flex;
    animation: scrollLogos 40s linear infinite;
    align-items: center;
    justify-content: center;
}

#clientsNamesTrack {
    display: flex;
    animation: scrollNames 40s linear infinite;
    align-items: center;
    justify-content: center;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

@keyframes scrollNames {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.client-logo {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid var(--border-light);
}

.client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.15);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: var(--bg-secondary);
  padding: var(--space-16) 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
  font-size: var(--font-5xl);
  color: var(--nordic-blue);
  margin-bottom: var(--space-4);
  font-weight: var(--font-bold);
}

.page-header p {
  font-size: var(--font-xl);
  color: var(--text-secondary);
}

/* ========== SERVICES DETAILED ========== */
.services-detailed {
  padding: var(--space-16) 0;
}

.service-detail {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--nordic-blue);
}

.service-detail:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateX(2px);
}

.service-detail .service-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  font-size: var(--font-3xl);
}

.service-content h3 {
  font-size: var(--font-3xl);
  color: var(--nordic-blue);
  margin-bottom: var(--space-3);
  font-weight: var(--font-semibold);
}

.service-description {
  font-size: var(--font-lg);
  font-weight: var(--font-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.service-details {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== ABOUT PAGE ========== */
.about-content {
  padding: var(--space-16) 0;
  max-width: 1000px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: var(--space-12);
}

.about-section h2 {
  font-size: var(--font-3xl);
  color: var(--nordic-blue);
  margin-bottom: var(--space-4);
  font-weight: var(--font-semibold);
}

.about-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  font-size: var(--font-lg);
}

/* ========== LEADERSHIP TEAM ========== */
.leadership-intro {
  max-width: 700px;
  margin: 0 auto var(--space-12) auto !important;
  color: var(--text-secondary);
  font-size: var(--font-lg) !important;
}

.leadership-team {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  width: 100%;
}

.leader-card {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: var(--space-8);
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.leader-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: var(--border-medium);
}

.leader-avatar {
  position: relative;
  overflow: hidden;
  transition: none !important;
  transform: none !important;
  border-radius: 90%;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: none;
  transform: none;
}

.leader-card:hover .leader-avatar {
  transform: none !important;
}

.leader-card:hover .leader-image {
  transform: none !important;
}

.avatar-initials {
  color: var(--text-white);
  font-size: var(--font-3xl);
  font-weight: var(--font-bold);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.leader-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.leader-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.contact-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
}

.contact-row .leader-description {
  margin: 0;
  white-space: nowrap;
}

.contact-plain {
  display: block;
  font-size: var(--font-base);
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.7;
}

.contact-plain:hover {
  color: #000;
}

.leader-name {
  font-size: var(--font-3xl);
  color: var(--nordic-blue);
  font-weight: var(--font-bold);
  margin: 0;
  line-height: 1.2;
}

.leader-title {
  font-size: var(--font-lg);
  color: var(--accent-color);
  font-weight: var(--font-semibold);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.leader-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: var(--font-base);
  margin: var(--space-2) 0 var(--space-4) 0;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: var(--linkedin-blue);
  color: var(--text-white);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: var(--font-medium);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}

.linkedin-btn:hover {
  background-color: var(--linkedin-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--text-white);
}

.linkedin-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.value-item {
  background: var(--bg-card);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-color: var(--border-medium);
}

.value-item h4 {
  font-size: var(--font-xl);
  color: var(--nordic-blue);
  margin-bottom: var(--space-3);
  font-weight: var(--font-semibold);
}

.value-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ========== CONTACT PAGE ========== */
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  padding: var(--space-16) 0;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: var(--font-3xl);
  color: var(--nordic-blue);
  margin-bottom: var(--space-6);
  font-weight: var(--font-semibold);
}

.contact-form {
  background-color: var(--bg-card);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-weight: var(--font-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  transition: var(--transition-fast);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--nordic-blue);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-control {
  width: 100%;
  padding: var(--space-3);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  transition: var(--transition-fast);
  font-family: inherit;
}

.contact-info {
  background: var(--bg-secondary);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.contact-item {
  margin-bottom: var(--space-6);
}

.contact-item h4 {
  font-size: var(--font-lg);
  color: var(--nordic-blue);
  margin-bottom: var(--space-2);
  font-weight: var(--font-semibold);
}

.contact-item p {
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-item a {
  color: var(--nordic-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-item a:hover {
  text-decoration: underline;
  color: var(--primary-hover);
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(135deg, var(--nordic-blue), var(--primary-dark));
  color: var(--text-white);
  padding: var(--space-12) 0 var(--space-6) 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: var(--space-4);
  color: var(--text-white);
  font-weight: var(--font-semibold);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--space-2);
  opacity: 0.9;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-section ul li a:hover {
  color: white;
  text-decoration: underline;
}

.footer-section p {
  opacity: 0.9;
  margin-bottom: var(--space-2);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-section a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-primary);
    width: 100%;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4) 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: var(--space-2) 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .leader-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .leader-avatar {
    width: 80px;
    height: 80px;
  }

  .avatar-initials {
    font-size: var(--font-2xl);
  }

  .leader-content {
    align-items: center;
    text-align: center;
  }

  .linkedin-btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: var(--font-4xl);
  }

  .hero-subtitle {
    font-size: var(--font-lg);
  }

  .hero {
    padding: var(--space-16) 0;
  }

  .services-overview {
    padding: var(--space-16) 0;
  }

  .why-us-section {
    padding: var(--space-16) 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
  }

  .service-detail .service-number {
    margin: 0 auto var(--space-4) auto;
  }

  .page-header {
    padding: var(--space-12) 0;
  }

  .page-header h1 {
    font-size: var(--font-4xl);
  }

  .section-header h2 {
    font-size: var(--font-3xl);
  }

  .about-content {
    padding: var(--space-12) 0;
  }

  .about-section h2 {
    font-size: var(--font-2xl);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    padding: var(--space-12) 0;
  }

  .container {
    padding: 0 var(--space-3);
  }

  .nav-logo {
    height: 40px;
  }

  .hero-cta {
    font-size: var(--font-base);
    padding: var(--space-3) var(--space-6);
  }

  .leader-card {
    padding: var(--space-6);
    gap: var(--space-4);
  }

  .leader-name {
    font-size: var(--font-2xl);
  }

  .leader-title {
    font-size: var(--font-base);
  }

  .leadership-team {
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: var(--space-6);
  }

  .service-number {
    width: 50px;
    height: 50px;
    font-size: var(--font-xl);
  }

  .hero-title {
    font-size: var(--font-3xl);
  }

  .page-header h1 {
    font-size: var(--font-3xl);
  }

  .section-header h2 {
    font-size: var(--font-2xl);
  }

  .contact-form {
    padding: var(--space-6);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leader-card {
    padding: var(--space-4);
  }

  .leader-avatar {
    width: 60px;
    height: 60px;
  }

  .avatar-initials {
    font-size: var(--font-lg);
  }

  .leader-name {
    font-size: var(--font-xl);
  }

  .linkedin-btn {
    font-size: var(--font-xs);
    padding: var(--space-2) var(--space-3);
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== LOADING STATES ========== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--nordic-blue);
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}