/* ========================================
   Tech Floral - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
  /* Colors */
  --tech-dark: #242424;
  --tech-light: #FAFAFA;
  --tech-green: #378883;
  --tech-green-light: #E8F2F1;
  --tech-gray: #999999;
  --tech-border: #E6E6E6;
  --white: #FFFFFF;
  --black: #000000;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 5rem;
  --container-max-width: 1280px;
  --container-padding: 1rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(55, 136, 131, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tech-dark);
  background-color: var(--tech-light);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

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

/* Section Padding */
.section-padding {
  padding: var(--section-padding) 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 0;
  }
}

/* ========================================
   Typography
   ======================================== */

.text-gradient {
  background: linear-gradient(135deg, var(--tech-green) 0%, #2a6b66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--tech-green-light);
  color: var(--tech-green);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tech-dark);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--tech-gray);
  max-width: 600px;
}

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

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--tech-green) 0%, #2a6b66 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(55, 136, 131, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2a6b66 0%, var(--tech-green) 100%);
  box-shadow: 0 6px 20px rgba(55, 136, 131, 0.35);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(55, 136, 131, 0.3);
}

.btn-dark {
  background: linear-gradient(145deg, var(--tech-dark) 0%, #1a1a1a 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(36, 36, 36, 0.2);
}

.btn-dark:hover {
  background: linear-gradient(145deg, #1a1a1a 0%, var(--tech-dark) 100%);
  box-shadow: 0 6px 20px rgba(36, 36, 36, 0.3);
  transform: translateY(-2px);
}

.btn-dark:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--tech-dark);
  border: 1.5px solid var(--tech-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
  background-color: var(--tech-green-light);
  border-color: var(--tech-green);
  color: var(--tech-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(55, 136, 131, 0.15);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
  padding: 1rem;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .nav-wrapper {
    height: 5rem;
  }
}

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

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--tech-green) 0%, #2a6b66 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(55, 136, 131, 0.25);
}

.logo:hover .logo-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(55, 136, 131, 0.35);
}

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

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tech-dark);
}

.logo-accent {
  color: var(--tech-green);
}

.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(36, 36, 36, 0.7);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--tech-green);
  transition: width var(--transition-fast);
}

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

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.mobile-toggle:hover {
  background-color: var(--tech-green-light);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--tech-dark);
  transition: all var(--transition-fast);
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 4rem;
  left: 1rem;
  right: 1rem;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-elevated);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(36, 36, 36, 0.8);
  border-bottom: 1px solid var(--tech-border);
}

.mobile-link:last-of-type {
  border-bottom: none;
}

.mobile-link:hover {
  color: var(--tech-green);
}

.mobile-cta {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(135deg, var(--tech-light) 0%, var(--white) 50%, rgba(232, 242, 241, 0.5) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: blobFloat 20s ease-in-out infinite;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -20px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 30px) scale(0.95);
  }

  75% {
    transform: translate(-30px, -10px) scale(1.02);
  }
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--tech-green) 0%, #2a6b66 100%);
  top: 5rem;
  left: 2.5rem;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #2a6b66 0%, var(--tech-green) 100%);
  bottom: 5rem;
  right: 2.5rem;
  opacity: 0.25;
  animation-delay: -5s;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(55, 136, 131, 0.1);
  color: var(--tech-green);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--tech-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--tech-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--tech-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--tech-border);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tech-dark);
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 2rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  color: var(--tech-gray);
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

/* Hero Images */
.hero-images {
  position: relative;
  height: 500px;
  display: none;
}

@media (min-width: 1024px) {
  .hero-images {
    display: block;
  }
}

.hero-image {
  position: absolute;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated), var(--shadow-glow);
  animation: float 6s ease-in-out infinite;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-image:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(55, 136, 131, 0.2);
}

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

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-image-1 {
  width: 280px;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 20;
  animation-delay: 0s;
}

.hero-image-2 {
  width: 250px;
  height: 320px;
  top: 5rem;
  right: 0;
  z-index: 10;
  animation-delay: 1s;
}

.hero-image-3 {
  width: 230px;
  height: 290px;
  bottom: 0;
  left: 5rem;
  z-index: 30;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-floating-card {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-elevated), 0 0 40px rgba(55, 136, 131, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 40;
  animation: float 6s ease-in-out infinite, pulseGlow 3s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: var(--shadow-elevated), 0 0 40px rgba(55, 136, 131, 0.1);
  }

  50% {
    box-shadow: var(--shadow-elevated), 0 0 60px rgba(55, 136, 131, 0.2);
  }
}

.floating-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--tech-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-green);
}

.floating-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.floating-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tech-dark);
}

.floating-title.large {
  font-size: 1.5rem;
}

.floating-text {
  font-size: 0.75rem;
  color: var(--tech-gray);
}

/* ========================================
   About Section
   ======================================== */

.about {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background-color: rgba(232, 242, 241, 0.5);
  transform: skewX(-12deg) translateX(25%);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.about-images {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36, 36, 36, 0.3), transparent);
}

.about-floating-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-elevated);
  max-width: 280px;
}

.about-floating-card .floating-icon.green {
  background-color: var(--tech-green);
  color: var(--white);
}

.about-decoration {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border: 4px solid rgba(55, 136, 131, 0.2);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content {
  max-width: 600px;
}

.about-text {
  font-size: 1.125rem;
  color: var(--tech-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-text.secondary {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--tech-dark);
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--tech-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.feature-check svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--tech-border);
  position: relative;
  z-index: 1;
}

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

.stats-item {
  text-align: center;
}

.stats-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--tech-green-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--tech-green);
}

.stats-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--tech-dark);
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .stats-value {
    font-size: 2.5rem;
  }
}

.stats-label {
  font-size: 0.875rem;
  color: var(--tech-gray);
}

/* ========================================
   EEAT Section
   ======================================== */

.eeat {
  background-color: rgba(232, 242, 241, 0.5);
}

.eeat-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

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

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

.eeat-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-fast);
}

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

.eeat-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--tech-green-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--tech-green);
}

.eeat-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--tech-dark);
  margin-bottom: 0.5rem;
}

.eeat-text {
  font-size: 0.875rem;
  color: var(--tech-gray);
  line-height: 1.6;
}

/* Certifications */
.certifications {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--tech-border);
}

.certifications-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tech-dark);
  margin-bottom: 0.5rem;
}

.certifications-subtitle {
  font-size: 0.875rem;
  color: var(--tech-gray);
  margin-bottom: 1.5rem;
}

.certifications-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.certification-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--white);
  border-radius: 9999px;
  box-shadow: var(--shadow-card);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tech-dark);
}

.certification-item svg {
  color: var(--tech-green);
}

/* ========================================
   Features Section
   ======================================== */

.features {
  position: relative;
  background-color: var(--tech-light);
  overflow: hidden;
}

.features-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.features-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  background-color: var(--tech-green);
  opacity: 0.05;
}

.features-blob-1 {
  width: 400px;
  height: 400px;
  top: 25%;
  left: 0;
}

.features-blob-2 {
  width: 400px;
  height: 400px;
  bottom: 25%;
  right: 0;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

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

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

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.feature-card:hover {
  box-shadow: var(--shadow-elevated), var(--shadow-glow);
  transform: translateY(-8px);
  border-color: rgba(55, 136, 131, 0.1);
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-card:hover .feature-title {
  color: var(--tech-green);
}

.feature-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.feature-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36, 36, 36, 0.6), transparent);
}

.feature-icon-small {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-green);
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon-small {
  background-color: var(--tech-green);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(55, 136, 131, 0.3);
}

.feature-content {
  padding: 1.5rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--tech-dark);
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.feature-description {
  font-size: 0.875rem;
  color: var(--tech-gray);
  line-height: 1.6;
}

.features-footer {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.features-footer p {
  color: var(--tech-gray);
  margin-bottom: 0.5rem;
}

.features-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--tech-green);
  font-weight: 500;
}

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

/* ========================================
   Pricing Section
   ======================================== */

.pricing {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(232, 242, 241, 0.5), transparent);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.toggle-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tech-gray);
  transition: color var(--transition-fast);
}

.toggle-label.active {
  color: var(--tech-dark);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--tech-border);
  border-radius: 9999px;
  transition: background-color var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: var(--white);
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked+.toggle-slider {
  background-color: var(--tech-green);
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(24px);
}

.toggle-badge {
  padding: 0.25rem 0.75rem;
  background-color: rgba(55, 136, 131, 0.1);
  color: var(--tech-green);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.pricing-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--tech-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  box-shadow: var(--shadow-elevated), var(--shadow-glow);
  transform: translateY(-8px);
  border-color: rgba(55, 136, 131, 0.2);
}

.pricing-popular {
  background: linear-gradient(145deg, var(--tech-dark) 0%, #1a1a1a 100%);
  color: var(--white);
  border-color: var(--tech-dark);
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(36, 36, 36, 0.25), 0 0 60px rgba(55, 136, 131, 0.1);
}

.pricing-popular:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 25px 50px rgba(36, 36, 36, 0.3), 0 0 80px rgba(55, 136, 131, 0.15);
}

@media (max-width: 767px) {
  .pricing-popular {
    transform: none;
  }

  .pricing-popular:hover {
    transform: translateY(-4px);
  }
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--tech-green) 0%, #2a6b66 100%);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(55, 136, 131, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(55, 136, 131, 0.3);
  }

  50% {
    box-shadow: 0 4px 24px rgba(55, 136, 131, 0.5);
  }
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-popular .pricing-name {
  color: var(--white);
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--tech-gray);
}

.pricing-popular .pricing-description {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-popular .price-currency,
.pricing-popular .price-value {
  color: var(--white);
}

.price-period {
  font-size: 0.875rem;
  color: var(--tech-gray);
}

.pricing-popular .price-period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-billed {
  font-size: 0.875rem;
  color: var(--tech-gray);
  margin-bottom: 1.5rem;
}

.pricing-popular .pricing-billed {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--tech-gray);
}

.pricing-features li svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-card:not(.pricing-popular) .pricing-features li svg {
  color: var(--tech-green);
  background-color: var(--tech-green-light);
  border-radius: 50%;
  padding: 0.25rem;
}

.pricing-popular .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-popular .pricing-features li svg {
  color: var(--white);
  background-color: var(--tech-green);
  border-radius: 50%;
  padding: 0.25rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--tech-border);
  position: relative;
  z-index: 1;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--tech-gray);
}

.trust-badge svg {
  color: var(--tech-green);
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
  position: relative;
  background-color: var(--tech-light);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: var(--tech-green);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.05;
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  border: 1px solid rgba(55, 136, 131, 0.1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tech-green) 0%, #2a6b66 50%, var(--tech-green) 100%);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--tech-green-light) 0%, rgba(55, 136, 131, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-green);
  opacity: 0.6;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating svg {
  color: #fbbf24;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--tech-dark);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .testimonial-quote {
    font-size: 1.5rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--tech-dark);
}

.author-role {
  font-size: 0.875rem;
  color: var(--tech-gray);
}

.author-location {
  font-size: 0.75rem;
  color: rgba(153, 153, 153, 0.7);
}

/* Testimonials Navigation */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-btn {
  width: 3rem;
  height: 3rem;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  color: var(--tech-dark);
  transition: all var(--transition-fast);
}

.nav-btn:hover {
  background-color: var(--tech-green);
  color: var(--white);
}

.nav-dots {
  display: flex;
  gap: 0.5rem;
}

.nav-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: rgba(153, 153, 153, 0.3);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.nav-dot.active {
  width: 2rem;
  background-color: var(--tech-green);
  border-radius: 9999px;
}

.nav-dot:hover {
  background-color: rgba(153, 153, 153, 0.5);
}

/* Client Logos */
.client-logos {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--tech-border);
  text-align: center;
  position: relative;
  z-index: 1;
}

.logos-title {
  font-size: 0.875rem;
  color: var(--tech-gray);
  margin-bottom: 2rem;
}

.logos-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  opacity: 0.5;
}

.logo-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tech-dark);
}

/* ========================================
   CTA Section
   ======================================== */

.cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(36, 36, 36, 0.85) 0%,
      rgba(55, 136, 131, 0.3) 50%,
      rgba(36, 36, 36, 0.9) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 4rem;
  }
}

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

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(232, 242, 241, 0.3);
  transform: skewX(-12deg) translateX(25%);
}

.contact-grid {
  display: grid;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

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

.contact-description {
  font-size: 1.125rem;
  color: var(--tech-gray);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--transition-fast);
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--tech-green-light) 0%, rgba(55, 136, 131, 0.15) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tech-green);
  transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
  background: var(--tech-green);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(55, 136, 131, 0.3);
}

.contact-label {
  font-weight: 600;
  color: var(--tech-dark);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--tech-gray);
  line-height: 1.6;
  transition: color var(--transition-fast);
}

.contact-value:hover {
  color: var(--tech-green);
}

.social-links {
  margin-top: 2rem;
}

.social-label {
  font-weight: 600;
  color: var(--tech-dark);
  margin-bottom: 1rem;
}

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

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--tech-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-green);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--tech-green);
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-elevated), 0 0 60px rgba(55, 136, 131, 0.08);
  border: 1px solid rgba(55, 136, 131, 0.1);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tech-dark);
  margin-bottom: 1.5rem;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tech-dark);
}

.form-input,
.form-textarea {
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--tech-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.8);
}

.form-input:hover,
.form-textarea:hover {
  border-color: rgba(55, 136, 131, 0.3);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--tech-green);
  box-shadow: 0 0 0 4px rgba(55, 136, 131, 0.1);
  background: var(--white);
}

.form-textarea {
  resize: none;
  min-height: 140px;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

.form-success.active {
  display: block;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(55, 136, 131, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--tech-green);
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tech-dark);
  margin-bottom: 0.5rem;
}

.success-text {
  color: var(--tech-gray);
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background-color: var(--tech-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

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

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

.footer-brand {
  max-width: 300px;
}

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

.footer-logo .logo-icon {
  background-color: var(--tech-green);
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item:hover {
  color: var(--tech-green);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

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

.footer-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-list a:hover {
  color: var(--tech-green);
}

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

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

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

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

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

.footer-social a:hover {
  background-color: var(--tech-green);
  color: var(--white);
}

/* ========================================
   Skip Link
   ======================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--tech-green);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  transition: top var(--transition-fast);
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
  padding: 1rem 0;
  background-color: var(--tech-light);
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .breadcrumb {
    margin-top: 5rem;
  }
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--tech-gray);
}

.breadcrumb-list a {
  color: var(--tech-gray);
}

.breadcrumb-list a:hover {
  color: var(--tech-green);
}

.breadcrumb-list li[aria-current="page"] {
  color: var(--tech-dark);
  font-weight: 500;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
  position: relative;
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, var(--tech-green-light) 0%, var(--tech-light) 100%);
  overflow: hidden;
}

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

.page-header-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.page-header-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--tech-green);
  opacity: 0.1;
  top: -200px;
  right: -100px;
  animation: blobFloat 10s ease-in-out infinite;
}

.page-header-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--tech-green);
  opacity: 0.08;
  bottom: -150px;
  left: -100px;
  animation: blobFloat 12s ease-in-out infinite reverse;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(55, 136, 131, 0.1);
  color: var(--tech-green);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.page-header-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-header-description {
  font-size: 1.125rem;
  color: var(--tech-gray);
  line-height: 1.7;
}

/* ========================================
   Features Preview (Homepage)
   ======================================== */
.features-preview {
  background-color: var(--white);
}

.features-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-preview-card {
  background: var(--tech-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.feature-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--tech-green-light);
}

.feature-preview-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--tech-green) 0%, #2a6b66 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.feature-preview-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-preview-description {
  font-size: 0.9375rem;
  color: var(--tech-gray);
  line-height: 1.6;
}

.features-preview-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ========================================
   Trust Section
   ======================================== */
.trust-section {
  padding: 4rem 0;
  background-color: var(--tech-light);
  text-align: center;
}

.trust-heading {
  font-size: 1rem;
  font-weight: 500;
  color: var(--tech-gray);
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-bottom: 2rem;
}

.trust-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tech-gray);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.trust-logo:hover {
  opacity: 0.8;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tech-dark);
  box-shadow: var(--shadow-card);
}

.trust-badge svg {
  color: var(--tech-green);
}

/* ========================================
   About Story Section
   ======================================== */
.about-story {
  background-color: var(--white);
}

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

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

.about-story-text {
  font-size: 1rem;
  color: var(--tech-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.about-stat {
  text-align: center;
  padding: 1rem;
  background: var(--tech-light);
  border-radius: var(--radius-lg);
}

.about-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--tech-green);
}

.about-stat-label {
  font-size: 0.8125rem;
  color: var(--tech-gray);
  margin-top: 0.25rem;
}

.about-story-images {
  position: relative;
}

.about-image-main img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-elevated);
}

.about-image-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  max-width: 200px;
}

.about-image-secondary img {
  border-radius: var(--radius-xl);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   About Mission Section
   ======================================== */
.about-mission {
  position: relative;
  background-color: var(--tech-light);
}

.about-mission-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(55, 136, 131, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

.mission-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.mission-card-main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--tech-green) 0%, #2a6b66 100%);
  color: var(--white);
}

@media (min-width: 1024px) {
  .mission-card-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
}

.mission-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mission-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

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

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--tech-green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-green);
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-description {
  font-size: 0.875rem;
  color: var(--tech-gray);
  line-height: 1.6;
}

/* ========================================
   EEAT Section (Enhanced)
   ======================================== */
.about-eeat {
  background-color: var(--white);
}

.eeat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.eeat-card {
  background: var(--tech-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.eeat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--tech-green-light);
}

.eeat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--tech-green) 0%, #2a6b66 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.eeat-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.eeat-description {
  font-size: 0.9375rem;
  color: var(--tech-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.eeat-list {
  list-style: none;
}

.eeat-list li {
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--tech-dark);
}

.eeat-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tech-green);
  font-weight: 700;
}

/* ========================================
   Team Section
   ======================================== */
.about-team {
  background-color: var(--tech-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

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

.team-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.team-content {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--tech-green);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--tech-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 0.75rem;
}

.team-social a {
  width: 32px;
  height: 32px;
  background: var(--tech-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-gray);
  transition: all var(--transition-fast);
}

.team-social a:hover {
  background: var(--tech-green);
  color: var(--white);
}

.team-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

.team-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-cta p {
  color: var(--tech-gray);
  margin-bottom: 1.5rem;
}

/* ========================================
   Certifications Section
   ======================================== */
.about-certifications {
  background-color: var(--white);
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.certification-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--tech-light);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.certification-item:hover {
  background: var(--tech-green-light);
  transform: translateY(-2px);
}

.certification-item svg {
  color: var(--tech-green);
}

/* ========================================
   Integrations Section
   ======================================== */
.integrations {
  background-color: var(--tech-light);
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.integration-item {
  padding: 1rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  color: var(--tech-dark);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-fast);
}

.integration-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  color: var(--tech-green);
}

/* ========================================
   Testimonials Page
   ======================================== */
.testimonials-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-stat {
  text-align: center;
}

.testimonial-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--tech-green);
}

.testimonial-stat-label {
  font-size: 0.875rem;
  color: var(--tech-gray);
}

.testimonials-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card-full {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border-top: 4px solid var(--tech-green);
}

.testimonial-card-full:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  color: #fbbf24;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--tech-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--tech-dark);
}

.author-title {
  font-size: 0.875rem;
  color: var(--tech-gray);
}

.author-location {
  font-size: 0.8125rem;
  color: var(--tech-green);
}

/* ========================================
   Pricing FAQ
   ======================================== */
.pricing-faq {
  margin-top: 5rem;
  text-align: center;
}

.pricing-faq h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--tech-dark);
}

.faq-item p {
  font-size: 0.9375rem;
  color: var(--tech-gray);
  line-height: 1.6;
}

.toggle-save {
  font-size: 0.75rem;
  background: var(--tech-green);
  color: var(--white);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  margin-left: 0.25rem;
}

/* ========================================
   Contact Page Enhancements
   ======================================== */
.contact-social {
  margin-top: 2rem;
}

.contact-social h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: var(--tech-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-gray);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--tech-green);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-map {
  width: 100%;
  height: 400px;
  background: var(--tech-light);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

/* ========================================
   Scrollbar
   ======================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--tech-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--tech-green) 0%, #2a6b66 100%);
  border-radius: 5px;
  border: 2px solid var(--tech-light);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2a6b66 0%, var(--tech-green) 100%);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--tech-green) var(--tech-light);
}

/* Selection */
::selection {
  background: rgba(55, 136, 131, 0.25);
  color: var(--tech-dark);
}

::-moz-selection {
  background: rgba(55, 136, 131, 0.25);
  color: var(--tech-dark);
}

/* ========================================
   Animations
   ======================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for grid items */
.feature-card:nth-child(1) {
  transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
  transition-delay: 0.15s;
}

.feature-card:nth-child(3) {
  transition-delay: 0.2s;
}

.feature-card:nth-child(4) {
  transition-delay: 0.25s;
}

.feature-card:nth-child(5) {
  transition-delay: 0.3s;
}

.feature-card:nth-child(6) {
  transition-delay: 0.35s;
}

.feature-card:nth-child(7) {
  transition-delay: 0.4s;
}

.feature-card:nth-child(8) {
  transition-delay: 0.45s;
}

.eeat-card:nth-child(1) {
  transition-delay: 0.1s;
}

.eeat-card:nth-child(2) {
  transition-delay: 0.15s;
}

.eeat-card:nth-child(3) {
  transition-delay: 0.2s;
}

.eeat-card:nth-child(4) {
  transition-delay: 0.25s;
}

.stats-item:nth-child(1) {
  transition-delay: 0.1s;
}

.stats-item:nth-child(2) {
  transition-delay: 0.15s;
}

.stats-item:nth-child(3) {
  transition-delay: 0.2s;
}

.stats-item:nth-child(4) {
  transition-delay: 0.25s;
}

/* Focus Visible States for Accessibility */
.btn:focus-visible,
.nav-link:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--tech-green);
  outline-offset: 2px;
}

/* Shimmer loading effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   Legal Pages (Privacy, Terms, Cookies, GDPR)
   ======================================== */

.legal-content {
  background-color: var(--tech-light);
  padding: 4rem 0;
}

.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

.legal-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tech-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--tech-green-light);
}

.legal-wrapper h2:first-child {
  margin-top: 0;
}

.legal-wrapper h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--tech-green);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-wrapper p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--tech-dark);
  margin-bottom: 1rem;
}

.legal-wrapper ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-wrapper ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--tech-dark);
  margin-bottom: 0.5rem;
}

.legal-wrapper ul li strong {
  color: var(--tech-green);
  font-weight: 600;
}

.legal-wrapper a {
  color: var(--tech-green);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.legal-wrapper a:hover {
  color: #2a6b66;
}

/* Cookie Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--tech-border);
}

.cookie-table th {
  background-color: var(--tech-green-light);
  font-weight: 600;
  color: var(--tech-dark);
}

.cookie-table td {
  color: var(--tech-dark);
}

.cookie-table tr:hover {
  background-color: var(--tech-light);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
  .legal-wrapper {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .legal-wrapper h2 {
    font-size: 1.25rem;
  }

  .legal-wrapper h3 {
    font-size: 1rem;
  }

  .legal-wrapper p,
  .legal-wrapper ul li {
    font-size: 0.9375rem;
  }

  .cookie-table {
    font-size: 0.875rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* ========================================
   About Page - Additional Sections
   ======================================== */

/* Careers Section */
.about-careers {
  background-color: var(--white);
}

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

.about-careers-content {
  max-width: 540px;
}

.about-careers-text {
  font-size: 1.125rem;
  color: var(--tech-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.career-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.career-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--tech-dark);
}

.career-benefit-icon {
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tech-green-light);
  border-radius: var(--radius-md);
}

.about-careers-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}

/* Press Section */
.about-press {
  background-color: var(--tech-light);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.press-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.press-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tech-green);
  margin-bottom: 1rem;
}

.press-card .press-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tech-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.press-excerpt {
  font-size: 0.875rem;
  color: var(--tech-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.press-date {
  font-size: 0.8125rem;
  color: var(--tech-gray);
  font-weight: 500;
}

.press-contact {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--tech-border);
}

.press-contact p {
  color: var(--tech-gray);
  font-size: 0.9375rem;
}

.press-contact a {
  color: var(--tech-green);
  font-weight: 500;
  text-decoration: underline;
}

.press-contact a:hover {
  color: #2a6b66;
}

/* Partners Section */
.about-partners {
  background-color: var(--white);
}

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

.partner-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--tech-light);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.partner-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  background-color: var(--white);
}

.partner-logo {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--tech-dark);
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.partner-item:hover .partner-logo {
  opacity: 1;
}

.partner-name {
  font-weight: 600;
  color: var(--tech-dark);
  margin-bottom: 0.25rem;
}

.partner-description {
  font-size: 0.8125rem;
  color: var(--tech-gray);
}

/* Responsive About Sections */
@media (max-width: 1024px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-careers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-careers-content {
    max-width: 100%;
    order: 1;
  }
  
  .about-careers-image {
    order: 0;
  }
  
  .about-careers-image img {
    height: 280px;
  }
  
  .career-benefits {
    grid-template-columns: 1fr;
  }
  
  .press-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .partner-item {
    padding: 1rem;
  }
}

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