/* ========================================
   FLOWCORE FØROYAR - OFFICIAL COLOR PALETTE
   ======================================== */
:root {
  /* Primary Brand Colors */
  --color-teal: #006d77;           /* Primary brand - headers, buttons, links */
  --color-teal-dark: #004e56;      /* Hover states, depth */
  --color-teal-light: #83c5be;     /* Accents, focus states */
  
  /* Warm Faroese Accents */
  --color-sunset: #ff6b35;         /* Sunset Orange - CTA highlights */
  --color-warm-accent: #ffc299;    /* Warm Peach Gold - THE signature accent */
  --color-amber: #f7931e;          /* Golden accent - tertiary */
  
  /* Legacy/Aliases */
  --color-coral: #ffc299;          /* Alias for warm-accent (refined from original #ff8c61) */
  --color-peach: #ffb088;          /* Lighter peach variant */
  
  /* Neutrals & Text */
  --color-warm-white: #faf8f5;              /* Background - warm, inviting */
  --color-warm-white-90: rgba(250, 248, 245, 0.9);  /* 90% opacity for depth */
  --color-white: #ffffff;                   /* Pure white - navigation text */
  --color-text-dark: #1a202c;               /* Headings */
  --color-text-medium: #4a5568;             /* Secondary text */
  --color-text-body: #2d3748;               /* Body text */
  
  /* Legacy aliases for backwards compatibility */
  --flowcore-teal: var(--color-teal);
  --flowcore-teal-dark: var(--color-teal-dark);
  --flowcore-teal-light: var(--color-teal-light);
  --flowcore-cyan: var(--color-teal-light);
  --flowcore-navy: var(--color-teal-dark);
  --faroese-sunset: var(--color-sunset);
  --faroese-coral: var(--color-coral);
  --faroese-amber: var(--color-amber);
  --text-dark: var(--color-text-dark);
  --text-medium: var(--color-text-medium);
  --text-medium-dark: var(--color-text-body);
  --background: var(--color-warm-white-90);
  --white: var(--color-white);
}

/* Scrollbar Styling - Subtle & Professional */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-warm-white-90);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 109, 119, 0.15);
  border-radius: 5px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 109, 119, 0.25);
}

::-webkit-scrollbar-thumb:active {
  background: rgba(0, 109, 119, 0.35);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 109, 119, 0.2) var(--color-warm-white-90);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'SF Pro Display', system-ui, sans-serif;
  background: transparent;
  color: var(--text-dark);
  line-height: 1.65;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.011em;
}

/* Universal Link Styles - Elegant Animated Underline */
a:not(.btn-primary):not(.btn-secondary):not(.feature-link):not(.logo-link):not(.mobile-menu-toggle):not(.en-link):not(.footer-social a) {
  color: var(--flowcore-teal);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

a:not(.btn-primary):not(.btn-secondary):not(.feature-link):not(.logo-link):not(.mobile-menu-toggle):not(.en-link):not(.footer-social a)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-sunset), var(--color-warm-accent));
  transition: width 0.3s ease;
}

a:not(.btn-primary):not(.btn-secondary):not(.feature-link):not(.logo-link):not(.mobile-menu-toggle):not(.en-link):not(.footer-social a):hover {
  color: var(--color-sunset);
}

a:not(.btn-primary):not(.btn-secondary):not(.feature-link):not(.logo-link):not(.mobile-menu-toggle):not(.en-link):not(.footer-social a):hover::after {
  width: 100%;
}

/* Navigation links - override universal link styles */
.transparent-nav a:not(.btn-primary):not(.btn-secondary):not(.en-link) {
  color: var(--color-warm-white) !important;
}

.transparent-nav a:not(.btn-primary):not(.btn-secondary):not(.en-link):hover {
  color: var(--color-warm-accent) !important;
}

.transparent-nav a:not(.btn-primary):not(.btn-secondary):not(.en-link)::after {
  display: none;
}

/* ========================================
   PAGE TRANSITION - CROSSFADE EFFECT
   ======================================== */

/* Prevent white flash during transitions */
html {
  background: var(--color-warm-white-90);
}

/* Page transition - smooth fade and slide for main content */
main {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s cubic-bezier(0.4, 0.0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
  will-change: opacity, transform;
}

/* Fade out state - triggered before navigation */
body.page-transitioning-out main {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
  transition: opacity 0.35s cubic-bezier(0.4, 0.0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
}

/* Fade in state - triggered after page load */
body.page-transitioning-in main {
  opacity: 0 !important;
  transform: translateY(10px) !important;
  transition: opacity 0.35s cubic-bezier(0.4, 0.0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
}

/* Keep header/navbar always visible, but let backgrounds transition smoothly */
header,
.hero-header,
.page-header {
  opacity: 1 !important;
}

.transparent-nav {
  opacity: 1 !important;
  will-change: background;
}

/* Ensure smooth navbar background transitions */
.hero-header .transparent-nav {
  transition: background 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
              backdrop-filter 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.page-header {
  transition: background 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
              border-bottom 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  main {
    transition: none !important;
  }
  
  body.page-transitioning-out main,
  body.page-transitioning-in main {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .hero-section {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
}

/* Mobile viewport optimization */
@media (max-width: 900px) {
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
}

/* Fixed Landscape Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/flowcore_landscape.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  opacity: 1;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(0, 56, 68, 0.2) 0%, 
    rgba(0, 109, 119, 0.4) 40%,
    rgba(247, 147, 30, 0.3) 70%,
    rgba(0, 56, 68, 0.8) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* Hero Header Section */
.hero-header {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

/* Page Header (for non-hero pages) */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 100px;
  background: rgba(0, 109, 119, 0.95);
  border-bottom: 3px solid var(--color-warm-accent);
}

.page-header .transparent-nav {
  position: relative;
  background: transparent;
  padding: 1.5rem 0;
  backdrop-filter: none;
}

/* Add padding to main when page has fixed header */
.page-header ~ main {
  padding-top: 120px;
}

/* Transparent Navigation */
.transparent-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  z-index: 10;
}

.logo {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s;
}

/* Mobile Menu Backdrop Overlay */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 99;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.hamburger-line {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.35s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: absolute;
}

.hamburger-line:nth-child(1) {
  top: 14px;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 14px;
}

/* X Icon Animation */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-menu-toggle[aria-expanded="true"] {
  background: rgba(131, 197, 190, 0.2);
  border-color: rgba(131, 197, 190, 0.4);
}

/* Base navigation menu styles */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Desktop navigation menu */
@media (min-width: 901px) {
  .nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  }
}

.transparent-nav a {
  color: var(--color-warm-white);
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.transparent-nav a:hover {
  color: var(--color-warm-accent);
}

.transparent-nav a:focus {
  outline: none;
}

.transparent-nav a.active {
  color: var(--flowcore-teal-light);
  border-bottom: 2px solid var(--flowcore-teal-light);
  padding-bottom: 2px;
}

.transparent-nav a.en-link {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 0.5em 1.2em;
  border-radius: 0.5em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}

.transparent-nav a.en-link:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s cubic-bezier(0.4, 0.0, 0.2, 1),
              transform 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.hero-section.loaded {
  opacity: 1;
  transform: translateY(0);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: transparent;
}

.hero-bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

/* Floating Logo on Peak */
.floating-logo {
  position: absolute;
  top: 28%;
  right: 18%;
  width: 120px;
  height: auto;
  z-index: 5;
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

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

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 109, 119, 0.3);
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-warm-accent);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
}

/* Feature Badges */
.hero-features {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.feature-badge {
  background: rgba(255, 194, 153, 0.25);
  padding: 0.6rem 1.25rem;
  border-radius: 0.4rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  min-height: 48px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--color-teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 109, 119, 0.5), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--color-teal-dark);
  box-shadow: 0 8px 30px rgba(0, 109, 119, 0.7), 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-primary:focus {
  outline: 3px solid var(--flowcore-teal-light);
  outline-offset: 2px;
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-secondary:focus {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

/* Legacy mountain dividers removed - no longer used */

/* Main Content */
main {
  width: 100%;
  margin: 0;
  padding: 8rem 1rem 8rem 1rem;
  position: relative;
  background: var(--color-warm-white-90);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 120px);
}

/* Intro Section - Now styled in Content Sections below */

/* Legacy sections - deprecated in favor of content section classes below */

/* Legacy styles moved to content sections below */

/* Footer */
.site-footer {
  background: var(--flowcore-navy);
  color: var(--color-warm-white);
  padding: 3rem 2rem 1rem;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-warm-accent);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--color-warm-white);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-section a {
  color: var(--color-warm-white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

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

/* Ensure footer contact links are visible and have underline animation */
.footer-section p a {
  color: var(--color-warm-white) !important;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section p a svg {
  flex-shrink: 0;
}

.footer-section p a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-sunset), var(--color-warm-accent));
  transition: width 0.3s ease;
}

.footer-section p a:hover {
  color: var(--color-warm-accent) !important;
}

.footer-section p a:hover::after {
  width: 100%;
}

.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--color-warm-accent);
  color: var(--flowcore-navy);
}

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

/* Contact Callout - Standout Contact Section */
.contact-callout {
  background: linear-gradient(135deg, var(--flowcore-teal) 0%, var(--flowcore-navy) 100%);
  color: var(--color-warm-white);
  padding: 3rem;
  border-radius: 16px;
  margin: 4rem 0;
  box-shadow: 0 10px 40px rgba(0, 109, 119, 0.3);
  scroll-margin-top: 10rem;
}

/* Ensure ALL text within contact callout is light colored */
.contact-callout,
.contact-callout p,
.contact-callout span,
.contact-callout strong,
.contact-callout h1,
.contact-callout h2,
.contact-callout h3,
.contact-callout h4,
.contact-callout h5,
.contact-callout h6 {
  color: var(--color-warm-white) !important;
}

.contact-callout h2 {
  color: var(--color-warm-white);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-callout h2::after {
  background: linear-gradient(90deg, var(--color-warm-accent), var(--color-sunset));
}

.contact-intro {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--color-warm-white);
  opacity: 0.95;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--color-warm-accent);
  margin-top: 0.25rem;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item strong {
  color: var(--color-warm-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-item a {
  color: var(--color-warm-white) !important;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-item a:hover {
  color: var(--color-warm-accent) !important;
  border-bottom-color: var(--color-warm-accent);
}

.contact-item a::after {
  display: none !important;
}

.contact-item span {
  color: var(--color-warm-white);
  line-height: 1.6;
}

.contact-links {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-warm-white);
}

.contact-links strong {
  color: var(--color-warm-white);
}

.contact-links a {
  color: var(--color-warm-white) !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.contact-links a:hover {
  color: var(--color-warm-accent) !important;
  border-bottom-color: var(--color-warm-accent);
}

.contact-links a::after {
  display: none !important;
}

@media (max-width: 768px) {
  .contact-callout {
    padding: 2rem 1.5rem;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-callout h2 {
    font-size: 1.75rem;
  }
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Legacy footer (for pages not yet updated) */
footer {
  text-align: center;
  padding: 2rem;
  background: var(--color-warm-white-90);
  color: var(--color-teal);
  font-size: 0.9rem;
  margin-top: 0;
  border-top: 1px solid var(--color-teal-light);
}

/* Responsive Design */
@media (max-width: 900px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(0, 109, 119, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 5rem 0 8rem 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    overflow-y: auto;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
  }

  .nav-menu.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu a {
    display: block;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    transition: all 0.2s ease;
  }

  .nav-menu a:hover,
  .nav-menu a:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--flowcore-teal-light);
    outline: none;
  }

  .nav-menu a.en-link {
    margin: 1.5rem 2rem;
    width: calc(100% - 4rem);
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .nav-menu a.en-link:hover,
  .nav-menu a.en-link:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
  }

  .logo {
    height: 38px;
  }

  .floating-logo {
    width: 80px;
    top: 25%;
    right: 15%;
  }

  .hero-content {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-features {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .feature-badge {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero-cta {
    gap: 1rem;
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1rem;
    text-align: center;
    min-height: 48px;
  }

  main {
    padding: 6rem 0.75rem 4rem 0.75rem;
  }
}

/* Tablet Responsive - 2 Column Blog Grid */
@media (max-width: 900px) and (min-width: 601px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .transparent-nav {
    padding: 1rem 0;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-menu {
    width: 100%;
    padding: 5rem 0 8rem 0;
  }

  .nav-menu a {
    font-size: 1.05rem;
    padding: 1.15rem 1.5rem;
  }

  .nav-menu a.en-link {
    margin: 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 1rem 1.25rem;
  }

  .logo {
    height: 36px;
  }

  .floating-logo {
    width: 60px;
    top: 22%;
    right: 12%;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .feature-badge {
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
    text-align: center;
    min-width: 200px;
  }

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

  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    min-height: 50px;
  }

  main {
    padding: 4rem 0.5rem 2rem 0.5rem;
  }

  .scroll-indicator {
    bottom: 1rem;
    font-size: 1.75rem;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Section Transitions */
section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


/* Touch-Friendly Interactions */
@media (hover: none) and (pointer: coarse) {
  /* Ensure all interactive elements have minimum touch targets */
  a, button, input, textarea, select, [role="button"] {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Remove hover effects on touch devices */
  .service-card:hover,
  .product-card:hover,
  article:hover {
    transform: none;
  }

  /* Add touch feedback instead */
  .service-card:active,
  .product-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  .btn-primary:active {
    transform: scale(0.97);
  }

  .btn-secondary:active {
    transform: scale(0.97);
  }

  .product-link:active {
    transform: scale(0.97);
  }
}

/* Reduce motion for accessibility - handled in main transition block above */
/* See lines 187-204 for reduced motion preferences */

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Enhanced Parallax Effect */
@supports (background-attachment: fixed) {
  body::before {
    background-attachment: fixed;
  }
}

/* All animations removed - instant page loads */

/* ========================================
   CONTENT SECTIONS - ELEGANT & ACCESSIBLE
   ======================================== */

/* Section Intro Text */
.section-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

/* Services Section */
.services-section {
  padding: 8rem 2rem 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-section h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--flowcore-navy);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: 4rem 0 6rem 0;
}

.service-card {
  background: transparent;
  padding: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 109, 119, 0.15);
  padding-bottom: 4rem;
  transition: all 0.3s ease;
}

.service-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-card h2 {
  color: var(--flowcore-teal);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1rem;
}

.service-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-warm-accent);
  border-radius: 2px;
}

.service-card p {
  color: var(--text-medium-dark);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  max-width: 800px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem 2rem;
}

.service-list li {
  padding: 0 0 0 1.75rem;
  position: relative;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1rem;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--flowcore-teal);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
}

.reference-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
  border-top: 2px solid rgba(0, 109, 119, 0.15);
  padding-top: 4rem;
}

.reference-section h2 {
  color: var(--flowcore-navy);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
}

.reference-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-warm-accent);
  border-radius: 2px;
}

.reference-section p {
  color: var(--text-dark);
  font-size: 1.15rem;
  line-height: 1.9;
}

/* Products Section */
.products-section {
  padding: 8rem 2rem 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.products-section h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--flowcore-navy);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.products-grid {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.product-card {
  background: transparent;
  padding: 0;
  border: none;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 109, 119, 0.15);
  padding-bottom: 5rem;
}

.product-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-content {
  flex: 1;
}

.product-card h2 {
  color: var(--flowcore-teal);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1rem;
}

.product-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-warm-accent);
  border-radius: 2px;
}

.product-tagline {
  font-size: 1.2rem;
  color: var(--text-medium);
  font-weight: 600;
  margin-bottom: 2rem;
  font-style: italic;
}

.product-card p {
  color: var(--text-medium-dark);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
}

.product-benefits {
  font-weight: 600;
  color: var(--flowcore-teal);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.05rem;
  /* Color and hover handled by universal link styles */
}

.product-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
}

.cta-section {
  max-width: 800px;
  margin: 6rem auto 0 auto;
  padding: 0;
  text-align: center;
  border-top: 2px solid rgba(0, 109, 119, 0.15);
  padding-top: 4rem;
}

.cta-section h2 {
  color: var(--flowcore-navy);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.5rem;
  text-align: center;
}

.cta-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-warm-accent);
  border-radius: 2px;
}

.cta-section p {
  color: var(--text-medium-dark);
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* Blog Section */
.blog-section {
  padding: 8rem 2rem 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Blog Index Page - Wider Container */
.blog-section--index {
  max-width: 1200px;
}

.blog-section h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--flowcore-navy);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.blog-section__subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  font-weight: 400;
}

.blog-post {
  background: transparent;
  padding: 0;
  border: none;
}

.post-meta {
  margin-bottom: 2rem;
  text-align: center;
}

.post-date {
  color: var(--flowcore-teal);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.blog-post h2 {
  color: var(--flowcore-navy);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 2.5rem;
}

.blog-post h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-warm-accent);
  border-radius: 2px;
}

.blog-post h3 {
  color: var(--flowcore-teal);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
}

.post-intro {
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 500;
  text-align: center;
}

.blog-post p {
  color: var(--text-medium-dark);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

/* Blog post links use universal link styles */

.blog-post em {
  display: block;
  margin-top: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0, 109, 119, 0.15);
  border-bottom: 1px solid rgba(0, 109, 119, 0.15);
  font-style: normal;
  color: var(--text-dark);
  text-align: center;
  font-size: 1.05rem;
}

.blog-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 109, 119, 0.15);
}

.blog-cta p {
  margin-bottom: 1.5rem;
  color: var(--text-medium-dark);
  font-size: 1.05rem;
}

/* Blog Breadcrumb Navigation */
.blog-breadcrumb {
  margin-bottom: 2rem;
  text-align: left;
}

.blog-breadcrumb a {
  color: var(--flowcore-teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
  color: var(--flowcore-teal-dark);
}

/* Full Blog Post Page Styles */
.blog-post--full {
  margin-top: 2rem;
}

.blog-post--full h1 {
  color: var(--flowcore-navy);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.blog-post--full .post-meta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.post-author {
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.875rem;
}

.post-author::before {
  content: '|';
  margin-right: 1rem;
  color: var(--text-medium);
}

.post-content {
  margin-top: 3rem;
}

.post-content h2 {
  text-align: left;
  padding-bottom: 1.75rem;
}

.post-content h2::after {
  left: 0;
  transform: none;
}

.post-content h3 {
  margin-top: 2.5rem;
}

.post-content ul {
  margin-bottom: 1.75rem;
}

.post-content code {
  background: rgba(0, 109, 119, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--flowcore-teal-dark);
}

.post-content pre {
  background: rgba(0, 109, 119, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1.75rem;
  border-left: 4px solid var(--flowcore-teal);
}

.post-content pre code {
  background: none;
  padding: 0;
  color: var(--text-dark);
}

/* Blog Grid Layout - Card-Based Design */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Blog Card Component - BEM Structure */
.blog-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(0, 109, 119, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 109, 119, 0.15);
  border-color: rgba(0, 109, 119, 0.2);
}

.blog-card__meta {
  margin-bottom: 1rem;
}

.blog-card__date {
  color: var(--flowcore-teal);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.blog-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-card__title a {
  color: var(--flowcore-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card__title a:hover {
  color: var(--flowcore-teal);
}

.blog-card__intro {
  color: var(--text-medium-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--flowcore-teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-card__link:hover {
  color: var(--flowcore-teal-dark);
  gap: 0.75rem;
}

.blog-card__arrow {
  transition: transform 0.3s ease;
}

.blog-card__link:hover .blog-card__arrow {
  transform: translateX(4px);
}

/* Legacy Support - Old Read More Link */
.read-more {
  display: inline-block;
  color: var(--flowcore-teal);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--flowcore-teal-dark);
  transform: translateX(4px);
}

/* About Section */
.about-section {
  padding: 8rem 2rem 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-section h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--flowcore-navy);
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.03em;
}

.about-content {
  background: transparent;
  padding: 0;
  border: none;
}

.about-content h2 {
  color: var(--flowcore-teal);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-warm-accent);
  border-radius: 2px;
}

.about-content h2:first-of-type {
  margin-top: 0;
}

.about-content p {
  color: var(--text-medium-dark);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

/* About content links use universal link styles */

.contact-info {
  background: transparent;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0, 109, 119, 0.15);
  border-bottom: 1px solid rgba(0, 109, 119, 0.15);
  margin-top: 4rem;
}

.contact-info strong {
  color: var(--flowcore-teal);
  font-weight: 700;
}

/* Trusted By Section - Social Proof */
.trusted-by {
  background-color: var(--color-warm-white-90);
  background-image: linear-gradient(rgba(255, 194, 153, 0.25), rgba(255, 194, 153, 0.25));
  text-align: center;
  padding: 4rem 2rem 5rem 2rem;
  width: 100%;
  position: relative;
}

.trusted-by__container {
  max-width: 1100px;
  margin: 0 auto;
}

.trusted-by__heading {
  color: var(--flowcore-navy);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4rem;
  line-height: 1.2;
  text-align: center;
}

.trusted-by__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.trusted-by__logo-item {
  flex: 0 1 auto;
  max-width: 200px;
}

.trusted-by__logo {
  width: 100%;
  height: auto;
  max-height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Homepage Section - Clean and Professional */
.homepage-section {
  padding: 8rem 2rem 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.homepage-section h2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--flowcore-navy);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.section-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

/* Achievement Highlight - Clean Typography */
.achievement-highlight {
  text-align: center;
  padding: 3rem 0 4rem 0;
  margin: 3rem 0 5rem 0;
  border-top: 1px solid rgba(0, 109, 119, 0.15);
  border-bottom: 1px solid rgba(0, 109, 119, 0.15);
}

.achievement-label {
  color: var(--flowcore-teal);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 1rem;
}

.achievement-highlight h3 {
  color: var(--flowcore-navy);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.achievement-highlight p {
  color: var(--text-medium-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.achievement-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  color: var(--flowcore-teal);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: var(--text-medium);
  font-size: 0.9rem;
  font-weight: 600;
}

.achievement-highlight a {
  /* Uses universal link styles */
  font-size: 1.05rem;
}

/* Homepage Services - Clean List */
.homepage-services {
  margin-top: 6rem;
}

.homepage-services h2 {
  color: var(--flowcore-navy);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.homepage-services h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-warm-accent);
  border-radius: 2px;
}

.service-item {
  background: transparent;
  padding: 0 0 3rem 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 109, 119, 0.15);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.service-item h3 {
  color: var(--flowcore-teal);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--text-medium-dark);
  line-height: 1.9;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.service-item a {
  /* Uses universal link styles */
  font-size: 1.05rem;
}

/* ========================================
   RESPONSIVE DESIGN FOR CONTENT SECTIONS
   ======================================== */

@media (max-width: 900px) {
  .section-intro {
    font-size: 1.05rem;
  }
  
  .services-section,
  .products-section,
  .blog-section,
  .about-section {
    padding: 5rem 1.5rem 4rem 1.5rem;
  }
  
  .services-section h1,
  .products-section h1,
  .blog-section h1,
  .about-section h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    gap: 4rem;
  }
  
  .service-card {
    padding-bottom: 3rem;
  }
  
  .service-card h2 {
    font-size: 1.5rem;
  }
  
  .service-card p {
    font-size: 1rem;
  }
  
  .service-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .products-grid {
    gap: 4rem;
  }
  
  .product-card {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
  }
  
  .product-logo {
    width: 120px;
    height: 120px;
    align-self: center;
    order: -1;
  }
  
  .product-card h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .product-card h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .product-tagline {
    text-align: center;
    font-size: 1rem;
  }
  
  .product-card p {
    font-size: 1rem;
  }
  
  .cta-section {
    padding-top: 3rem;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .blog-post h2 {
    font-size: 2rem;
  }
  
  .blog-post h3 {
    font-size: 1.5rem;
  }
  
  .post-intro {
    font-size: 1.1rem;
  }
  
  .blog-post p {
    font-size: 1rem;
  }
  
  /* Blog Grid Responsive */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-card {
    padding: 1.5rem;
  }
  
  .blog-card__title {
    font-size: 1.35rem;
  }
  
  .blog-section__subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  
  .about-content h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  .homepage-section {
    padding: 5rem 1.5rem 4rem 1.5rem;
  }
  
  .homepage-section h2 {
    font-size: 2.5rem;
  }
  
  .section-intro {
    font-size: 1.05rem;
  }
  
  .achievement-highlight {
    padding: 2rem 0 3rem 0;
    margin: 2rem 0 4rem 0;
  }
  
  .achievement-highlight h3 {
    font-size: 1.5rem;
  }
  
  .achievement-highlight p {
    font-size: 1rem;
  }
  
  .achievement-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .homepage-services {
    margin-top: 4rem;
  }
  
  .homepage-services h2 {
    font-size: 1.6rem;
  }
  
  .service-item {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  
  .service-item h3 {
    font-size: 1.5rem;
  }
  
  .service-item p {
    font-size: 1rem;
  }
  
  .reference-section {
    padding: 3rem 0;
  }
  
  .reference-section h2 {
    font-size: 1.6rem;
  }
  
  .reference-section p {
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 2rem 0;
  }
  
  /* Trusted By Section - Mobile */
  .trusted-by {
    padding: 3rem 1.5rem 4rem 1.5rem;
  }
  
  .trusted-by__heading {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .trusted-by__logos {
    gap: 2.5rem;
    flex-direction: column;
    align-items: center;
  }
  
  .trusted-by__logo-item {
    max-width: 180px;
  }
  
  .trusted-by__logo {
    max-height: 50px;
  }
  
}

