/* Modern CSS Reset and Variables */
:root {
  --primary-color: #008080;
  --secondary-color: #006666;
  --text-color: #1f2937;
  --light-text: #6b7280;
  --background: #ffffff;
  --section-bg: #f3f4f6;
  --success: #059669;
  --success-hover: #047857;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
  --glass-background: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);
  --tag-bg: rgba(0, 128, 128, 0.1);
}

/* Basic styles for layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background);
}

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

/* Header and Navigation */
header {
  background: var(--glass-background);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem 0;
}

.logo img {
  height: 48px;
  width: auto;
  margin-right: 1rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

nav {
  flex: 1;
}

nav ul {
  list-style: none;
  text-align: right;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 1.5rem;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
}

nav ul li a:hover {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.3);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav ul li a:hover::after {
  width: calc(100% - 2rem);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 128, 128, 0.35);
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--text-color);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

header.nav-open .nav-toggle-bar:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

header.nav-open .nav-toggle-bar:nth-child(3) {
  opacity: 0;
}

header.nav-open .nav-toggle-bar:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-background);
    border-radius: 0 0 16px 16px;
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  header.nav-open nav {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem 1.5rem;
    text-align: left;
  }

  nav ul li {
    display: block;
    margin: 0;
  }

  nav ul li a {
    display: block;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.6);
  }
}

/* Sections */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

section:nth-child(even) {
  background-color: var(--section-bg);
  margin: 0;
  max-width: none;
}

section:nth-child(even) > * {
  max-width: 1200px;
  margin: 0 auto;
}

/* Jobs Section */
#jobs {
  background: linear-gradient(135deg, rgba(0, 128, 128, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
}

.jobs-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-color);
  font-size: 1.15rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.job-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 128, 128, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 128, 128, 0.16);
}

.job-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.job-tag {
  background: rgba(0, 128, 128, 0.12);
  color: var(--primary-color);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.job-card h3 {
  margin: 0.25rem 0 0.5rem;
  color: var(--text-color);
}

.job-card p {
  margin: 0;
  color: var(--light-text);
}

.job-points {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.job-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-color);
}

.job-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.12);
}

.jobs-footnote {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-color);
  font-weight: 500;
}

.jobs-footnote a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.jobs-footnote a:hover {
  text-decoration: underline;
}

/* Typography */
h1, h2, h3 {
  color: var(--text-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(45deg, var(--text-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

/* Buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.primary-btn,
.secondary-btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.2;
}

.secondary-btn,
button.secondary-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.primary-btn:hover,
.secondary-btn:hover,
button:hover {
  transform: translateY(-1px);
  box-shadow: var(--hover-shadow);
}

.primary-btn:hover,
button.primary-btn:hover {
  background-color: var(--secondary-color);
}

.secondary-btn:hover,
button.secondary-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.about-features li i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.service-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  margin-top: 1rem;
}

.service-card ul li {
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

.service-card ul li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.2rem;
  color: var(--text-color);
  text-align: center;
}

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

.service-block {
  background: var(--glass-background);
  border: 1px solid rgba(0, 128, 128, 0.2);
  border-radius: 1rem;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 128, 128, 0.08);
}

.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 128, 128, 0.12);
  border-color: rgba(0, 128, 128, 0.3);
}

.service-block:hover::before {
  opacity: 1;
}

.service-block h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding-bottom: 1rem;
}

.service-block h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
}

.service-block p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-list li {
  margin-bottom: 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.7;
}

#case-studies {
  background: linear-gradient(135deg, rgba(0, 128, 128, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
}

.case-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-color);
  font-size: 1.125rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.case-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 128, 128, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.case-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 128, 128, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 128, 128, 0.16);
}

.case-card:hover::after {
  opacity: 1;
}

.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(0, 128, 128, 0.12);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.case-summary {
  color: var(--light-text);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.case-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.case-highlights li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.case-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.15);
}

.case-highlights strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Contact Section */
#contact {
  background: linear-gradient(135deg, 
    rgba(0, 128, 128, 0.05) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(0, 128, 128, 0.05) 100%
  );
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
}

.contact-info {
  padding-right: 2rem;
  border-right: 1px solid var(--glass-border);
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info h3::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.contact-details p {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-color);
  margin: 0;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.contact-details p:hover {
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
}

.contact-details i {
  color: var(--primary-color);
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.contact-details a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-proof {
  list-style: none;
  margin: 2rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-proof li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-proof li::before {
  content: '\f00c';
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
}

.response-note {
  font-size: 0.95rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.contact-form-wrapper {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(31, 41, 55, 0.15);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-color);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.15);
}

.form-consent {
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 128, 128, 0.18);
  background: rgba(0, 128, 128, 0.06);
  font-size: 0.9rem;
  color: var(--light-text);
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--primary-color);
}

.checkbox-label a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.checkbox-label a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.form-disclaimer {
  font-size: 0.9rem;
  color: var(--light-text);
  margin: 0;
}

.form-status {
  font-size: 0.9rem;
  margin: 0;
  color: var(--success);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: #b91c1c;
}

.privacy-policy {
  background: linear-gradient(135deg, rgba(0, 128, 128, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
  max-width: none;
  margin: 0;
}

.privacy-policy > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-intro {
  max-width: 820px;
  color: var(--light-text);
  font-size: 1rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.privacy-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 128, 128, 0.12);
  box-shadow: var(--card-shadow);
}

.privacy-card h3 {
  margin-bottom: 0.5rem;
}

.privacy-card p {
  color: var(--light-text);
  font-size: 0.95rem;
}

.privacy-note {
  margin: 2rem auto 0;
  text-align: center;
  color: var(--light-text);
  font-size: 0.95rem;
}

.privacy-note a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.privacy-note a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .contact-info {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .contact-info p {
    font-size: 1rem;
  }

  .contact-details p {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .contact-form-wrapper {
    padding-left: 0;
  }
}

/* Footer */
footer {
  background-color: var(--text-color);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Home Section */
#home {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 5rem;
  background: radial-gradient(circle at center, 
    rgba(0, 128, 128, 0.1) 0%, 
    rgba(0, 128, 128, 0.05) 35%, 
    transparent 70%
  );
  position: relative;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 128, 128, 0.1) 0%,
    transparent 50%,
    rgba(0, 128, 128, 0.05) 100%
  );
  z-index: -1;
}

#home p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Founder Section */
#founder {
  background: linear-gradient(135deg, 
    rgba(0, 128, 128, 0.05) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(0, 128, 128, 0.05) 100%
  );
}

.founder-content {
  max-width: 1000px;
  margin: 0 auto;
}

.founder-intro {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--glass-background);
  backdrop-filter: blur(10px) saturate(180%);
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
}

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

.founder-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: -0.5rem;
}

.founder-highlight {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.founder-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-color);
  line-height: 1.4;
  position: relative;
  padding: 0 2rem;
}

.founder-quote::before,
.founder-quote::after {
  content: '';
  color: var(--primary-color);
  font-size: 2rem;
  font-family: serif;
  position: absolute;
  line-height: 1;
}

.founder-quote::before {
  left: 0;
  top: 0;
}

.founder-quote::after {
  right: 0;
  bottom: -0.5rem;
}

.founder-background {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.experience-card {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.experience-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.experience-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.founder-expertise {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
}

.founder-expertise h4 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.expertise-tags span {
  background: var(--tag-bg);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.expertise-tags span:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 4rem 1rem;
  }
  
  nav ul li {
    margin: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 40px;
    margin-right: 0.5rem;
  }
  
  .header-content {
    padding: 0 1rem;
  }
  
  nav ul {
    text-align: left;
  }

  .founder-background {
    grid-template-columns: 1fr;
  }
  
  .founder-quote {
    font-size: 1.25rem;
  }
  
  .expertise-tags {
    gap: 0.75rem;
  }
  
  .expertise-tags span {
    font-size: 0.85rem;
  }

  .service-block {
    padding: 2rem;
  }
  .services-intro {
    font-size: 1rem;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-list li {
    font-size: 1rem;
    padding-left: 1.5rem;
  }

  .service-block p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .detailed-services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

section > * {
  animation: fadeIn 0.6s ease-out forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light-text);
  max-width: 800px;
  margin: 1.5rem auto;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: 2.5rem 0 2rem;
  flex-wrap: wrap;
}

.metric-card {
  min-width: 200px;
  padding: 1.75rem;
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  text-align: left;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metric-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

.metric-label {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

.key-highlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-color);
  padding: 0.75rem 1.5rem;
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  backdrop-filter: blur(10px);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.tech-stack {
  margin: 3rem 0;
  text-align: center;
}

.tech-label {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.tech-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tech-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.tech-item i {
  font-size: 1.15rem;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.tech-item:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}

.tech-item:hover i {
  transform: translateY(-1px);
}

.trusted-by {
  margin-top: 4rem;
  text-align: center;
}

.trusted-by p {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.company-logos {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.company-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background: var(--glass-background);
  backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
}

.company-link.text-only {
  cursor: default;
  border-style: dashed;
}

.company-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
    padding: 0 1rem;
  }

  .hero-metrics {
    gap: 1rem;
  }

  .metric-card {
    min-width: unset;
    width: 100%;
  }

  .key-highlights {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .highlight-item {
    font-size: 1rem;
  }

  .tech-icons {
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .tech-item {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
  }

  .company-logos {
    gap: 1rem;
    padding: 0 1rem;
  }

  .company-link {
    font-size: 1rem;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    padding: 2rem;
  }
}

/* Blog Section */
#blog {
  background: linear-gradient(135deg, 
    rgba(0, 128, 128, 0.05) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(0, 128, 128, 0.05) 100%
  );
}

.blog-content {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-intro p {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-cta:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
}

.blog-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.blog-card-content {
  padding: 2rem;
  text-align: left;
  position: relative;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.blog-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.4;
}

.blog-card p {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 2rem;
}

.read-more i {
  font-size: 0.9rem;
  margin: 0;
  transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blog-intro p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .blog-preview {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .blog-card-content {
    padding: 1.5rem;
  }
  
  .blog-card h3 {
    font-size: 1.25rem;
  }
  
  .blog-card p {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }
}
  
