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

/* --- Mobile & Safari Optimizations --- */
html {
  /* Prevent font scaling in landscape orientation on iOS */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  /* Enable smooth scrolling and fix Safari bounce */
  -webkit-overflow-scrolling: touch;
}
input, button, textarea {
  /* Improve tap target size on mobile */
  font-size: 1rem;
  -webkit-tap-highlight-color: rgba(33,128,141,0.15);
}
/* Remove tap highlight on links/buttons for iOS Safari */
a, button {
  -webkit-tap-highlight-color: transparent;
}
/* Fix viewport for Safari/iOS */
@media screen and (max-width: 600px) {
  html, body {
    min-width: 0;
    width: 100vw;
    overflow-x: hidden;
  }
}
/* Prevent input zoom on iOS */
input[type="text"], input[type="email"], input[type="number"], textarea {
  font-size: 16px;
}
/* --- End Mobile & Safari Optimizations --- */


:root {
  /* Colors */
  --color-background: rgba(252, 252, 249, 1);
  --color-surface: rgba(255, 255, 253, 1);
  --color-text: rgba(19, 52, 59, 1);
  --color-text-secondary: rgba(98, 108, 113, 1);
  --color-primary: rgba(33, 128, 141, 1);
  --color-primary-hover: rgba(29, 116, 128, 1);
  --color-primary-active: rgba(26, 104, 115, 1);
  --color-secondary: rgba(94, 82, 64, 0.12);
  --color-secondary-hover: rgba(94, 82, 64, 0.2);
  --color-secondary-active: rgba(94, 82, 64, 0.25);
  --color-border: rgba(94, 82, 64, 0.2);
  --color-btn-primary-text: rgba(252, 252, 249, 1);
  --color-card-border: rgba(94, 82, 64, 0.12);
  --color-card-border-inner: rgba(94, 82, 64, 0.12);
  --color-error: rgba(192, 21, 47, 1);
  --color-success: rgba(33, 128, 141, 1);
  --color-warning: rgba(168, 75, 47, 1);
  --color-info: rgba(98, 108, 113, 1);
  --color-focus-ring: rgba(33, 128, 141, 0.4);
  --color-select-caret: rgba(19, 52, 59, 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-heading: 'Poppins', 'Montserrat', 'Clash Display', 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-base: 'Inter', 'Geist', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-mono: 'Berkeley Mono', 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --font-size-xs: 0.85rem;
  --font-size-sm: 1rem;
  --font-size-base: 1.15rem;
  --font-size-md: 1.25rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.5rem;
  --font-size-3xl: 3rem;
  --font-size-4xl: 3.5rem;
  --font-size-5xl: 4.5rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height-tight: 1.15;
  --line-height-normal: 1.7;
  --letter-spacing-tight: -0.01em;
  --letter-spacing-wide: 0.04em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    --color-background: rgba(31, 33, 33, 1);
    --color-surface: rgba(38, 40, 40, 1);
    --color-text: rgba(245, 245, 245, 1);
    --color-text-secondary: rgba(167, 169, 169, 0.7);
    --color-primary: rgba(50, 184, 198, 1);
    --color-primary-hover: rgba(45, 166, 178, 1);
    --color-primary-active: rgba(41, 150, 161, 1);
    --color-secondary: rgba(119, 124, 124, 0.15);
    --color-secondary-hover: rgba(119, 124, 124, 0.25);
    --color-secondary-active: rgba(119, 124, 124, 0.3);
    --color-border: rgba(119, 124, 124, 0.3);
    --color-error: rgba(255, 84, 89, 1);
    --color-success: rgba(50, 184, 198, 1);
    --color-warning: rgba(230, 129, 97, 1);
    --color-info: rgba(167, 169, 169, 1);
    --color-focus-ring: rgba(50, 184, 198, 0.4);
    --color-btn-primary-text: rgba(19, 52, 59, 1);
    --color-card-border: rgba(119, 124, 124, 0.2);
    --color-card-border-inner: rgba(119, 124, 124, 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(119, 124, 124, 0.2);
    --color-border-secondary: rgba(119, 124, 124, 0.2);
    --color-select-caret: rgba(245, 245, 245, 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: 50, 184, 198;
    --color-error-rgb: 255, 84, 89;
    --color-warning-rgb: 230, 129, 97;
    --color-info-rgb: 167, 169, 169;
  }
}

/* Data attribute for manual theme switching */

/* Base styles */
html {
  font-size: 17px;
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2 {
  margin: 0;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 0.7em;
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: var(--letter-spacing-wide);
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0 4px 24px rgba(33,128,141,0.08);
}
h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--accent-primary);
  letter-spacing: var(--letter-spacing-wide);
}

p, li {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-text-secondary);
  margin-bottom: 1.2em;
  letter-spacing: 0.01em;
}

.gradient-text {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.subtle {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff !important;
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  color: #fff !important;
}

.btn--primary:active {
  background: var(--color-primary-active);
  color: #fff !important;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

/* Add a dark mode specific caret */

/* Also handle data-color-scheme */

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

/* Status indicators - simplified with CSS variables */

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}

/* Accessibility */

/* Dark mode specifics */

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://www.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

/* Modern Accent Colors */
:root {
  --accent-primary: #1FB8CD;
  --accent-secondary: #FFC185;
  --accent-tertiary: #B4413C;
  --deep-blue: #0A1628;
  --medium-blue: #1E3A8A;
  --light-blue: #3B82F6;
  --gradient-primary: linear-gradient(135deg, var(--deep-blue) 0%, var(--medium-blue) 50%, var(--light-blue) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  --text-gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', var(--font-family-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Montserrat', var(--font-family-base);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo a {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo span {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 600px) {
  .logo a, .logo span {
    color: #13343B !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
  }
  /* Our Approach section mobile fix */
  .approach, .approach--zigzag {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    max-height: none !important;
    pointer-events: auto !important;
    z-index: 1 !important;
  }
  .approach--zigzag {
    padding: 2.5rem 0 2rem 0 !important;
    background: #fafdff !important;
    box-shadow: none !important;
  }
  .zigzag-timeline::before {
    display: none !important;
  }
  .zigzag-row, .zigzag-row.left, .zigzag-row.right {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.2rem !important;
    min-height: 0 !important;
    margin-bottom: 0.7rem !important;
  }
  .zigzag-connector {
    display: none !important;
  }
  .zigzag-number {
    position: static !important;
    margin: 0 0 0.6rem 0 !important;
    left: unset !important;
    right: unset !important;
    width: 2rem !important;
    height: 2rem !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--accent-secondary) !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(33,128,141,0.10) !important;
    border: 2px solid #fff !important;
    z-index: 2 !important;
  }
  .zigzag-card {
    background: #fff !important;
    border-radius: 1.15rem !important;
    box-shadow: 0 2px 12px rgba(33,128,141,0.09) !important;
    margin: 0 0 1.1rem 0 !important;
    padding: 1.1rem 1rem !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: left !important;
    align-items: flex-start !important;
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
  }
  .zigzag-title {
    font-size: 1.08rem !important;
    font-weight: 700 !important;
    color: #13343B !important;
    margin-bottom: 0.5rem !important;
    margin-top: 0.2rem !important;
    letter-spacing: 0.01em !important;
  }
  .zigzag-desc {
    color: #1a2a33 !important;
    font-size: 0.97rem !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
  }
}



.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--gradient-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  margin: 3px 0;
  transition: 0.3s;
}

/* Modern Hero Section */
.hero--modern {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  height: 100vh;
  background: linear-gradient(135deg, #fafdff 0%, #eaf6fb 100%);
  box-shadow: 0 8px 32px rgba(33, 128, 141, 0.04);
  padding-top: 0;
  padding-bottom: 4rem;
  margin-bottom: 0;
}
.hero__container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero__content {
  text-align: center;
  padding: 90px 1.5rem 4rem 1.5rem;
  background: rgba(255,255,255,0.95);
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(33,128,141,0.06);
}
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #13343B;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero__emoji {
  font-size: 2.2rem;
  vertical-align: middle;
}
.hero__subtitle {
  font-size: 1.25rem;
  color: #626C71;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
@media (max-width: 900px) {
  .hero__title { font-size: 2rem; }
  .hero__content { padding-top: 70px; }
  .hero__actions { flex-direction: column; gap: 1rem; }
  .hero--modern {
    min-height: 100vh;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 600px) {
  .hero__title { font-size: 2rem; }
  .hero__content { padding-top: 70px; }
  .hero__actions { flex-direction: column; gap: 1rem; }
  .hero--modern {
    min-height: 100vh;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
  .about__headline, .services__headline, .contact__headline { font-size: 1.1rem; }
  .about__container, .services__container, .contact__container {
    padding: 0 0.5rem;
  }
  .about__main, .services__grid, .contact__main {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  .service-card, .about__value-card, .contact__form-wrap {
    padding: 1rem 0.5rem !important;
    min-width: 0;
    max-width: 100%;
  }
  .tab-panel {
    padding: 1rem 0.5rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Safari/iOS specific fixes for flex and grid children */
@media screen and (max-width: 600px) {
  .hero__container, .about__container, .services__container, .contact__container {
    display: block !important;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* Remove old hero and dots styles only for the hero section */
.hero, .hero .container, .hero-title, .hero-tagline, .hero-description {
  all: unset;
  display: revert;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

/* Modern About Section */
.about__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about__main {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.about__intro {
  flex: 1 1 320px;
  max-width: 400px;
  align-self: center;
}
.about__headline {
  font-size: 2rem;
  font-weight: 800;
  color: #13343B;
  margin-bottom: 1.2rem;
}
.about__accent {
  background: var(--text-gradient, linear-gradient(135deg, #1FB8CD, #FFC185));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about__desc {
  font-size: 1.15rem;
  color: #626C71;
  margin-bottom: 0;
  font-weight: 500;
}
.about__values {
  flex: 2 1 400px;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}
.about__value-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 16px rgba(33,128,141,0.06);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about__value-card:hover {
  box-shadow: 0 6px 32px rgba(33,128,141,0.12);
  transform: translateY(-4px) scale(1.03);
}
.about__icon {
  font-size: 2.2rem;
  color: var(--accent-primary, #1FB8CD);
  margin-bottom: 1rem;
}
.about__value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #13343B;
  margin-bottom: 0.5rem;
}
.about__value-desc {
  font-size: 1rem;
  color: #626C71;
}
@media (max-width: 900px) {
  .about__main { flex-direction: column; gap: 2.5rem; align-items: stretch; }
  .about__values { flex-direction: row; }
}
@media (max-width: 600px) {
  .about__values { flex-direction: column; gap: 1rem; }
  .about__value-card { padding: 1.2rem 0.7rem; }
  .about__headline { font-size: 1.3rem; }
}

/* Modern Services Section */
.services__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.services__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.services__headline {
  font-size: 2rem;
  font-weight: 800;
  color: #13343B;
  margin-bottom: 0.7rem;
}
.services__accent {
  background: var(--text-gradient, linear-gradient(135deg, #1FB8CD, #FFC185));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.service-card {
  background: #fafdff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 16px rgba(33,128,141,0.06);
  padding: 2.2rem 1.2rem 1.7rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 32px rgba(33,128,141,0.12);
  transform: translateY(-4px) scale(1.03);
}
.service-card__icon {
  font-size: 2.3rem;
  color: var(--accent-primary, #1FB8CD);
  margin-bottom: 1.1rem;
}
.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #13343B;
  margin-bottom: 0.5rem;
}
.service-card__desc {
  font-size: 1rem;
  color: #626C71;
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (max-width: 600px) {
  /* NAVBAR LOGO VISIBILITY */
  .logo a, .logo span {
    color: #13343B !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
  }
  /* APPROACH SECTION VISIBILITY */
  .approach, .approach--zigzag {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
  }
  /* TEXT CONTRAST IMPROVEMENTS */
  body, section, .container, .about__container, .services__container, .contact__container {
    color: #13343B !important;
  }
  h1, h2, .hero__title, .about__headline, .services__headline, .contact__headline, .about__value-title, .service-card__title {
    color: #13343B !important;
    text-shadow: none !important;
  }
  .hero__subtitle, .about__desc, .contact__desc, .about__value-desc, .service-card__desc, .tab-panel p, .footer, .footer-content, .footer-logo, .about__badge, .contact__item, .contact__desc, .about__desc {
    color: #1a2a33 !important;
    text-shadow: none !important;
  }
  .about__badge {
    background: #f3f6fa !important;
    color: #13343B !important;
  }
  .tab-btn, .btn {
    color: #13343B !important;
  }
  /* HERO SECTION BLEND FIX */
  .hero__content {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0;
  }
  /* Make services grid single column, increase gap */
  .services__grid { grid-template-columns: 1fr; gap: 1.3rem; }
  .services__headline { font-size: 1.3rem; }
  .service-card {
    padding: 1.3rem 0.8rem;
    margin: 0 0 1.3rem 0;
    border-radius: 1.2rem;
    box-shadow: 0 4px 18px rgba(33,128,141,0.10), 0 1.5px 8px rgba(252,193,133,0.07);
    max-width: 100%;
    min-width: 0;
    width: 100%;
    background: #fff;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  /* Remove zigzag lines, connectors, and numbers */
  .zigzag-timeline::before,
  .zigzag-row,
  .zigzag-number,
  .zigzag-connector {
    display: none !important;
  }
  .zigzag-card {
    box-shadow: 0 2px 12px rgba(33,128,141,0.08);
    border-radius: 1.1rem;
    margin: 0 0 1.2rem 0;
    padding: 1.1rem 0.7rem;
    max-width: 100%;
    min-width: 0;
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }
}

/* Services Section */
.services {
  background: var(--color-background);
}

.tab-btn {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-radius: var(--radius-base);
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  background: var(--color-secondary);
}

.tab-btn.active {
  background: var(--gradient-primary);
  color: white;
}

.tab-panel {
  display: none;
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.tab-panel p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
}

/* Modern Approach Section */
.approach__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.approach__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.approach__headline {
  font-size: 2rem;
  font-weight: 800;
  color: #13343B;
  margin-bottom: 0.7rem;
}
.approach__accent {
  background: var(--text-gradient, linear-gradient(135deg, #1FB8CD, #FFC185));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 700px) {
  .approach__headline { font-size: 1.3rem; }
}

/* Modern Contact Section */
.contact--modern {
  background: #fff;
  padding: 4rem 0 3rem 0;
}
.contact__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact__main {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.contact__info {
  flex: 1 1 320px;
  max-width: 400px;
  align-self: center;
}
.contact__headline {
  font-size: 2rem;
  font-weight: 800;
  color: #13343B;
  margin-bottom: 1.2rem;
}
.contact__accent {
  background: var(--text-gradient, linear-gradient(135deg, #1FB8CD, #FFC185));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact__desc {
  font-size: 1.15rem;
  color: #626C71;
  margin-bottom: 2rem;
  font-weight: 500;
}
.contact__details {
  margin-bottom: 1.5rem;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #21808D;
}
.contact__item i {
  color: var(--accent-secondary, #FFC185);
  font-size: 1.1rem;
}
.contact__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
.contact__social {
  width: 44px;
  height: 44px;
  background: #fafdff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #21808D;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(33,128,141,0.04);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.contact__social:hover {
  background: var(--accent-primary, #1FB8CD);
  color: #fff;
  box-shadow: 0 4px 16px rgba(33,128,141,0.10);
}
.contact__form-wrap {
  flex: 1 1 400px;
  max-width: 480px;
  background: #fafdff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 16px rgba(33,128,141,0.06);
  padding: 2.2rem 1.2rem 1.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__form .btn--full-width {
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .contact__main { flex-direction: column; gap: 2.5rem; align-items: stretch; }
}
@media (max-width: 600px) {
  .contact__form-wrap { padding: 1.2rem 0.7rem; }
  .contact__headline { font-size: 1.3rem; }
}

/* Footer */
.footer {
  background: var(--deep-blue);
  color: white;
  padding: 2rem 0;
}

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

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .tab-panel {
    padding: 2rem 1rem;
  }
}

/* Animated Dots Logo for Hero */
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding-top: 2.5rem;
}
.dots-decoration {
  position: relative;
  width: 120px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.95;
  animation: floatDot 3s ease-in-out infinite;
}
.dot-1 {
  width: 32px; height: 32px;
  background: var(--accent-primary, #1FB8CD);
  left: 0; top: 8px;
  animation-delay: 0s;
}
.dot-2 {
  width: 24px; height: 24px;
  background: var(--accent-secondary, #FFC185);
  left: 32px; top: 0;
  animation-delay: 0.5s;
}
.dot-3 {
  width: 16px; height: 16px;
  background: var(--accent-tertiary, #B4413C);
  left: 64px; top: 20px;
  animation-delay: 1s;
}
.dot-4 {
  width: 20px; height: 20px;
  background: var(--accent-secondary, #FFC185);
  left: 90px; top: 10px;
  animation-delay: 1.5s;
}
.dot-5 {
  width: 12px; height: 12px;
  background: var(--accent-primary, #1FB8CD);
  left: 108px; top: 28px;
  animation-delay: 2s;
}
@keyframes floatDot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Trust/Clients Section */
.trust--modern {
  background: #fff;
  padding: 3rem 0 2.5rem 0;
}
.trust__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.trust__headline {
  font-size: 1.35rem;
  font-weight: 700;
  color: #13343B;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.trust__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust__logo {
  font-size: 1.25rem;
  color: #b0b8c9;
  background: #f6f8fa;
  border-radius: 0.75rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(33,128,141,0.04);
  transition: box-shadow 0.2s;
}
.trust__logo:hover {
  box-shadow: 0 4px 16px rgba(33,128,141,0.10);
  color: #21808D;
}
@media (max-width: 600px) {
  .trust__logos { gap: 1rem; }
  .trust__logo { font-size: 1rem; padding: 0.5rem 1rem; }
}

/* --- Zig-Zag Approach Timeline --- */
.approach--zigzag {
  position: relative;
  background: linear-gradient(135deg, #fafdff 0%, #eaf6fb 100%);
  padding: 6rem 0 5rem 0;
  overflow: hidden;
}
.approach--zigzag .approach-bg {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 120vw;
  height: 120vw;
  max-width: 1600px;
  max-height: 900px;
  background: radial-gradient(circle at 60% 30%, #1FB8CD22 0%, #FFC18511 60%, transparent 100%);
  z-index: 0;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(8px);
}
.zigzag-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0 2rem 0;
}
.zigzag-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0.18;
  border-radius: 2px;
  transform: translateX(-50%);
  z-index: 0;
}
.zigzag-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  min-height: 160px;
  margin-bottom: 0.5rem;
  z-index: 1;
}
.zigzag-row.left {
  flex-direction: row;
}
.zigzag-row.right {
  flex-direction: row-reverse;
}
.zigzag-card {
  background: rgba(255,255,255,0.95);
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px rgba(33,128,141,0.10), 0 1.5px 8px rgba(252,193,133,0.08);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  text-align: left;
  min-width: 270px;
  max-width: 340px;
  width: 100%;
  position: relative;
  z-index: 2;
  border: 1.5px solid var(--color-card-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
  margin: 0 2.5rem;
}
.zigzag-row.right .zigzag-card {
  align-items: flex-end;
  text-align: right;
}
.zigzag-card:hover {
  box-shadow: 0 12px 48px 0 rgba(33,128,141,0.18), 0 2px 16px rgba(252,193,133,0.12);
  transform: translateY(-8px) scale(1.04);
  border-color: var(--accent-primary);
}
.zigzag-icon {
  font-size: 2.1rem;
  color: var(--accent-primary);
  background: linear-gradient(135deg, #1FB8CD 60%, #FFC185 100%);
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 12px rgba(33,128,141,0.10);
  transition: background 0.3s, color 0.3s;
}
.zigzag-card:hover .zigzag-icon {
  color: #fff;
  background: linear-gradient(135deg, #B4413C 0%, #1FB8CD 100%);
}
.zigzag-number {
  position: absolute;
  top: 1.1rem;
  left: -2.5rem;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--accent-secondary);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(33,128,141,0.10);
  border: 2.5px solid #fff;
  z-index: 3;
}
.zigzag-row.right .zigzag-number {
  left: auto;
  right: -2.5rem;
}
.zigzag-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #13343B;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
}
.zigzag-desc {
  font-size: 1rem;
  color: #626C71;
  margin-bottom: 0;
  font-weight: 500;
}
.zigzag-connector {
  position: relative;
  flex: 1 1 0;
  min-width: 40px;
  max-width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.zigzag-connector::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(33,128,141,0.10);
  border: 3px solid #fff;
  z-index: 2;
}
.zigzag-row.right .zigzag-connector::before {
  background: var(--accent-secondary);
}
/* Animation for wow effect */
.zigzag-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.zigzag-card.animate-in, .zigzag-card.animate-left.animate-in, .zigzag-card.animate-right.animate-in {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}
.zigzag-card.animate-left {
  transform: translateX(-60px) translateY(40px) scale(0.98);
}
.zigzag-card.animate-right {
  transform: translateX(60px) translateY(40px) scale(0.98);
}
.zigzag-card.animate-left.animate-in {
  transform: translateX(0) translateY(0) scale(1) !important;
}
.zigzag-card.animate-right.animate-in {
  transform: translateX(0) translateY(0) scale(1) !important;
}
/* Responsive Design */
@media (max-width: 1000px) {
  .zigzag-timeline {
    max-width: 98vw;
  }
  .zigzag-card {
    min-width: 220px;
    max-width: 90vw;
    margin: 0 1rem;
  }
}
@media (max-width: 700px) {
  .zigzag-timeline::before {
    left: 16px;
    width: 4px;
  }
  .zigzag-row, .zigzag-row.left, .zigzag-row.right {
    flex-direction: row;
    align-items: flex-start;
    min-height: 120px;
  }
  .zigzag-card {
    min-width: 0;
    max-width: 100vw;
    margin: 0 0 1.5rem 2.5rem;
    text-align: left;
    align-items: flex-start;
  }
  .zigzag-row.right .zigzag-card {
    align-items: flex-start;
    text-align: left;
    margin: 0 0 1.5rem 2.5rem;
  }
  .zigzag-number {
    left: -2.5rem;
    right: auto;
  }
  .zigzag-connector {
    min-width: 32px;
    max-width: 32px;
  }
}/* --- Premium About Section --- */
.about--premium {
  position: relative;
  background: linear-gradient(135deg, #fafdff 0%, #f5f8fa 100%);
  padding: 6rem 0 5rem 0;
  overflow: hidden;
}
.about--premium .about-bg {
  position: absolute;
  top: -60px;
  left: 50%;
  width: 100vw;
  height: 600px;
  background: radial-gradient(circle at 60% 30%, #E3F6F9 0%, #FDF6ED 60%, transparent 100%);
  z-index: 0;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(16px);
  opacity: 0.7;
}
.about__main {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.about__intro {
  flex: 1 1 320px;
  max-width: 400px;
  align-self: center;
  position: relative;
  padding-bottom: 1.5rem;
}
.about__headline {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1a2a33;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
  opacity: 0.92;
}
.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #E3F6F9 0%, #FDF6ED 100%);
  color: #21808D;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.32em 1em 0.32em 0.8em;
  margin-bottom: 1.1rem;
  box-shadow: 0 1px 6px rgba(33,128,141,0.06);
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.about__badge i {
  color: #BEE6F2;
  font-size: 1.1em;
}
.about__desc {
  font-size: 1.13rem;
  color: #6A7C87;
  margin-bottom: 0;
  font-weight: 400;
  opacity: 0.92;
}
.about__values--premium {
  flex: 2 1 400px;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: stretch;
  position: relative;
}
.about__value-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 1px 8px rgba(33,128,141,0.04);
  padding: 1.3rem 1rem 1.1rem 1rem;
  text-align: center;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  z-index: 2;
  border: 1px solid #f2f6f8;
  opacity: 0.97;
}
.about__value-card:hover {
  box-shadow: 0 4px 16px rgba(33,128,141,0.08);
  transform: translateY(-2px) scale(1.02);
}
.about__icon {
  font-size: 1.7rem;
  color: #BEE6F2;
  margin-bottom: 0.7rem;
  background: linear-gradient(135deg, #E3F6F9 60%, #FDF6ED 100%);
  border-radius: 50%;
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(33,128,141,0.06);
  transition: background 0.3s, color 0.3s;
  opacity: 0.85;
}
.about__value-card:hover .about__icon {
  color: #fff;
  background: linear-gradient(135deg, #BEE6F2 0%, #21808D 100%);
}
.about__value-title {
  font-size: 1.01rem;
  font-weight: 600;
  color: #1a2a33;
  margin-bottom: 0.3rem;
  opacity: 0.92;
}
.about__value-desc {
  font-size: 0.93rem;
  color: #6A7C87;
  opacity: 0.92;
}
.about__value-connector {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about__value-connector::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #E3F6F9;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(33,128,141,0.04);
  border: 1.5px solid #fff;
  z-index: 2;
  opacity: 0.7;
}
.about__value-connector:last-child {
  display: none;
}
@media (max-width: 900px) {
  .about__main { flex-direction: column; gap: 3rem; align-items: stretch; }
  .about__values--premium { flex-direction: row; }
}
@media (max-width: 600px) {
  .about__values--premium { flex-direction: column; gap: 1.2rem; }
  .about__value-card { padding: 1.2rem 0.7rem; }
  .about__headline { font-size: 1.2rem; }
  .about__value-connector { display: none; }
}

/* --- Premium Services Section --- */
.services--premium {
  position: relative;
  background: linear-gradient(135deg, #fafdff 0%, #f5f8fa 100%);
  padding: 6rem 0 5rem 0;
  overflow: hidden;
}
.services--premium .services-bg {
  position: absolute;
  top: -60px;
  left: 50%;
  width: 100vw;
  height: 600px;
  background: radial-gradient(circle at 40% 30%, #E3F6F9 0%, #FDF6ED 60%, transparent 100%);
  z-index: 0;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(16px);
  opacity: 0.7;
}
.services__header {
  text-align: center;
  margin-bottom: 2.8rem;
  position: relative;
  z-index: 1;
}
.services__headline {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2a33;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  opacity: 0.92;
}
.services__subtitle {
  font-size: 1.13rem;
  color: #6A7C87;
  font-weight: 400;
  margin-bottom: 0.5rem;
  opacity: 0.92;
}
.services__grid--premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  grid-auto-rows: 1fr;
  justify-items: center;
  align-items: stretch;
  margin: 0 auto;
  max-width: 1200px;
}
.service-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 1px 8px rgba(33,128,141,0.04);
  border: 1px solid #f2f6f8;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.25s, transform 0.22s, border-color 0.22s;
  min-width: 0;
  width: 100%;
  max-width: 320px;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: fadeInUpCard 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.15s; }
.service-card:nth-child(3) { animation-delay: 0.25s; }
.service-card:nth-child(4) { animation-delay: 0.35s; }
@keyframes fadeInUpCard {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(33,128,141,0.10), 0 2px 12px #E3F6F9;
  border-color: #BEE6F2;
  transform: translateY(-6px) scale(1.03);
}
.service-card__icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #1FB8CD 60%, #BEE6F2 100%);
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(33,128,141,0.06);
  transition: background 0.3s, color 0.3s;
  opacity: 0.93;
}
.service-card__title {
  font-size: 1.13rem;
  font-weight: 600;
  color: #1a2a33;
  margin-bottom: 0.5rem;
  opacity: 0.92;
}
.service-card__desc {
  font-size: 1.01rem;
  color: #6A7C87;
  opacity: 0.92;
}
@media (max-width: 1100px) {
  .services__grid--premium { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 700px) {
  .services__grid--premium { grid-template-columns: 1fr; gap: 1.1rem; min-width: 0; }
  .services__headline { font-size: 1.3rem; }
  .service-card { padding: 1.5rem 0.7rem; max-width: 100%; }
}

/* About Section Cards: Smallest */
.about__value-card {
  padding: 1rem 0.8rem 0.8rem 0.8rem;
  border-radius: 1.1rem;
  box-shadow: 0 1px 6px rgba(33,128,141,0.03);
  max-width: 220px;
}
.about__icon {
  font-size: 1.3rem;
  width: 1.8rem;
  height: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Services Section Cards: Medium */
.service-card {
  padding: 1.7rem 1.1rem 1.2rem 1.1rem;
  border-radius: 1.3rem;
  box-shadow: 0 2px 10px rgba(33,128,141,0.04);
  max-width: 260px;
}
.service-card__icon {
  font-size: 1.7rem;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.7rem;
}

/* Approach Section Cards: Largest */
.zigzag-card {
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px rgba(33,128,141,0.08), 0 1.5px 8px rgba(252,193,133,0.06);
  max-width: 340px;
}
.zigzag-icon {
  font-size: 2rem;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
}

/* Unify border and shadow for all cards */
.about__value-card, .service-card, .zigzag-card {
  border: 1px solid #f2f6f8;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about__value-card:hover, .service-card:hover, .zigzag-card:hover {
  box-shadow: 0 8px 32px rgba(33,128,141,0.10), 0 2px 12px #E3F6F9;
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 900px) {
  .about__value-card { max-width: 100%; padding: 0.8rem 0.5rem 0.7rem 0.5rem; }
  .service-card { max-width: 100%; padding: 1.1rem 0.5rem 0.9rem 0.5rem; }
  .zigzag-card { max-width: 98vw; padding: 1.2rem 0.7rem; }
}
@media (max-width: 600px) {
  .about__value-card { padding: 0.7rem 0.3rem 0.6rem 0.3rem; }
  .service-card { padding: 0.8rem 0.3rem 0.7rem 0.3rem; }
  .zigzag-card { padding: 0.9rem 0.2rem; }
}

