/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --color-background: #fcfcfc;
    --color-foreground: #171717;
    --color-muted: #737373;
    --color-border: #e5e5e5;
    --color-secondary: #f5f5f5;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  /* Logo */
  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--color-foreground);
    text-decoration: none;
  }
  
  /* Navigation */
  .nav {
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-background);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-content {
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5rem;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-branding {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
  }

  @media (min-width: 1024px) {
    .nav-branding {
      display: flex;
    }
  }

  .nav-tagline {
    font-size: 0.75rem;
    color: var(--color-muted);
    font-weight: 400;
  }

  .nav-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--color-muted);
    font-weight: 400;
  }

  .nav-status-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .nav-links {
    display: none;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  @media (min-width: 768px) {
    .nav-links {
      display: flex;
    }
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 3.5rem;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem;
    gap: 0.5rem;
  }

  @media (min-width: 768px) {
    .nav-links.active {
      display: flex;
      flex-direction: row;
      position: static;
      border-bottom: none;
      padding: 0;
      gap: 2rem;
    }
  }

  .nav-links li {
    margin: 0;
    padding: 0;
  }

  .nav-item {
    list-style: none;
  }

  .nav-links a,
  .nav-link {
    font-size: 0.875rem;
    color: var(--color-foreground);
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 0.5rem;
  }

  @media (min-width: 768px) {
    .nav-links a,
    .nav-link {
      padding: 0;
    }
  }

  .nav-links a:hover,
  .nav-links a.active,
  .nav-link:hover,
  .nav-link.active,
  .nav-link-active {
    color: var(--color-muted);
  }

  .nav-cta {
    background-color: var(--color-foreground);
    color: var(--color-background);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: opacity 0.2s;
  }

  @media (min-width: 768px) {
    .nav-cta {
      padding: 0.5rem 1rem;
    }
  }

  .nav-cta:hover {
    opacity: 0.9;
    color: var(--color-background);
  }
  
  .btn-primary {
    background-color: var(--color-foreground);
    color: var(--color-background);
    padding: 0.5rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.2s;
    display: none;
  }
  
  @media (min-width: 768px) {
    .btn-primary {
      display: block;
    }
  }
  
  .btn-primary:hover {
    opacity: 0.9;
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .mobile-menu-btn {
      display: none;
    }
  }
  
  .mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--color-foreground);
    transition: all 0.3s;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  @media (min-width: 768px) {
    .mobile-menu {
      display: none !important;
    }
  }
  
  .mobile-nav-link {
    padding: 0.75rem;
    color: var(--color-foreground);
    text-decoration: none;
    font-size: 1rem;
  }
  
  .mobile-btn {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 400px;
    padding: 160px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-foreground);
    background-image: url("/placeholder.svg?height=800&width=1600");
    background-size: cover;
    background-position: center;
  }

  @media (min-width: 768px) {
    .hero {
      min-height: 500px;
    }
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--color-foreground);
    opacity: 0.7;
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-background);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-wrap: balance;
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 3.75rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 4.5rem;
    }
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: rgba(252, 252, 252, 0.8);
    max-width: 42rem;
    margin: 0 auto;
    text-wrap: pretty;
  }
  
  @media (min-width: 768px) {
    .hero-description {
      font-size: 1.25rem;
    }
  }
  
  /* Features Section */
  .features {
    padding: 6rem 0;
    background-color: var(--color-background);
  }
  
  .section-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-bottom: 4rem;
  }
  
  .features-grid {
    display: grid;
    gap: 4rem;
  }
  
  @media (min-width: 768px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .feature-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--color-foreground);
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-foreground);
  }
  
  .feature-description {
    color: var(--color-muted);
    line-height: 1.6;
  }
  
  /* Image Section */
  .image-section {
    padding: 6rem 0;
    background-color: var(--color-background);
  }
  
  .image-grid {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .image-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .image-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 6rem 0;
    background-color: var(--color-background);
  }
  
  .faq-container {
    max-width: 56rem;
    margin: 0 auto;
  }
  
  .page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 4rem;
  }
  
  @media (min-width: 768px) {
    .page-title {
      font-size: 4.5rem;
    }
  }
  
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .faq-item {
    border-bottom: 1px solid var(--color-border);
  }
  
  .faq-question {
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-foreground);
  }
  
  @media (min-width: 768px) {
    .faq-question {
      font-size: 1.5rem;
    }
  }
  
  .faq-question:hover {
    background-color: rgba(245, 245, 245, 0.5);
  }
  
  .faq-question span {
    padding-right: 2rem;
    text-wrap: balance;
  }
  
  .faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1rem 2rem 1rem;
  }
  
  .faq-answer p {
    color: var(--color-muted);
    line-height: 1.6;
    font-size: 1.125rem;
  }

  /* FAQ Intro */
  .faq-intro {
    margin-bottom: 3rem;
    color: var(--color-muted);
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .faq-question-heading {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
  }

  /* FAQ CTA Section */
  .faq-cta {
    margin-top: 6rem;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--color-secondary);
    border-radius: 0.5rem;
  }

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

  @media (min-width: 768px) {
    .faq-cta-title {
      font-size: 2.5rem;
    }
  }

  .faq-cta-description {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-cta-button {
    display: inline-block;
    background-color: var(--color-foreground);
    color: var(--color-background);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
    border-radius: 0.25rem;
  }

  .faq-cta-button:hover {
    opacity: 0.9;
  }

  /* FAQ Categories Grid */
  .faq-categories-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
  }

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

  .faq-category-card {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .faq-category-card:hover {
    border-color: var(--color-foreground);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }

  .faq-category-link {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: var(--color-foreground);
  }

  .faq-category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
  }

  .faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-foreground);
  }

  .faq-category-description {
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .faq-category-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--color-muted);
  }

  .faq-category-count {
    font-weight: 500;
  }

  .faq-category-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
  }

  .faq-category-card:hover .faq-category-arrow {
    transform: translateX(4px);
  }

  /* FAQ Detail Page */
  .faq-breadcrumb {
    margin-bottom: 2rem;
  }

  .breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    font-size: 0.875rem;
  }

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

  .breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: var(--color-muted);
  }

  .breadcrumb-item a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .breadcrumb-item a:hover {
    color: var(--color-foreground);
  }

  .breadcrumb-item.active {
    color: var(--color-foreground);
    font-weight: 500;
  }

  .faq-category-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
  }

  .faq-category-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
  }

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

  @media (min-width: 768px) {
    .faq-detail-title {
      font-size: 3rem;
    }
  }

  .faq-detail-description {
    font-size: 1.125rem;
    color: var(--color-muted);
    max-width: 42rem;
    margin: 0 auto;
  }

  .faq-back-link {
    margin-top: 3rem;
    text-align: center;
  }

  .faq-back-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--color-foreground);
    text-decoration: none;
    border: 1px solid var(--color-border);
    border-radius: 0.25rem;
    transition: all 0.2s;
  }

  .faq-back-button:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-foreground);
  }

  /* About Section */
  .about-section {
    padding: 6rem 0;
    background-color: var(--color-background);
  }
  
  .about-container {
    max-width: 56rem;
    margin: 0 auto;
  }
  
  .about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  
  .about-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .about-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-foreground);
  }
  
  .about-text {
    font-size: 1.125rem;
    color: var(--color-muted);
    line-height: 1.6;
  }
  
  .about-images {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .about-images {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .values-grid {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .values-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .value-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-foreground);
  }
  
  .value-description {
    color: var(--color-muted);
    line-height: 1.6;
  }
  
  .quote-box {
    background-color: var(--color-foreground);
    color: var(--color-background);
    padding: 3rem;
    text-align: center;
    margin-top: 1.5rem;
  }
  
  .quote-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-wrap: balance;
  }
  
  @media (min-width: 768px) {
    .quote-text {
      font-size: 1.875rem;
    }
  }
  
  /* Footer */
  .footer {
    border-top: 1px solid var(--color-border);
    background-color: var(--color-background);
    padding: 3rem 0;
  }
  
  .footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-foreground);
  }
  
  .footer-description {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.6;
  }
  
  .footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links li,
  .footer-links a {
    font-size: 0.875rem;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .footer-links a:hover {
    color: var(--color-foreground);
  }
  
  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .footer-copyright {
    font-size: 0.875rem;
    color: var(--color-muted);
  }
  
  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-legal a {
    font-size: 0.875rem;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .footer-legal a:hover {
    color: var(--color-foreground);
  }
  
.hero-business {
  padding: 6rem 0 4rem;
  background: var(--color-secondary);
  color: var(--color-foreground);
}
.hero-business h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.hero-business .hero-description {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-value-props {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero-value-props .value-prop {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 0.95rem;
}
.hero-trust-signals {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.hero-metrics .metric {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.hero-metrics .metric-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}
.hero-metrics .metric-label {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.services-overview {
  padding: 5rem 0;
}
.services-overview h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.service-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-category-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-category-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}
.service-category-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 25px 80px rgba(34, 197, 94, 0.18);
}
.service-category-card .category-icon {
  font-size: 2rem;
  transition: transform 0.25s ease;
}
.service-category-card:hover .category-icon {
  transform: scale(1.08);
}
.service-category-card h3 {
  margin: 0;
}
.service-category-card .workflow-mini {
  font-size: 0.9rem;
  color: var(--color-muted);
  border-left: 3px solid var(--color-accent);
  padding-left: 0.75rem;
}
.service-category-card .use-cases {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}
.service-category-card .price-range {
  font-weight: 600;
  font-size: 1.1rem;
}

.social-proof {
  padding: 5rem 0;
  background: #fff;
}
.social-proof h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.testimonial-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  background: var(--color-secondary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.testimonial-author {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.stat-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}
.stat-value {
  font-size: 2rem;
  font-weight: 700;
}
.stat-label {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.workflow-section {
  padding: 5rem 0;
  background: #fff;
}
.workflow-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.workflow-step-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--color-secondary);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.workflow-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.workflow-step-card.highlighted {
  border-color: var(--color-accent);
  background: #ecfdf3;
}
.workflow-step-card .step-number {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}
.workflow-step-card ul {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--color-muted);
}
.workflow-timeline {
  text-align: center;
  margin-top: 2rem;
  color: var(--color-muted);
}

.contact-enhanced {
  position: relative;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.08), transparent 25%),
    #0b1021;
  color: #fff;
  padding: 6rem 0;
  overflow: hidden;
}
.contact-content {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.contact-content .section-title {
  letter-spacing: -0.02em;
  color: #e5e7eb;
}
.contact-description {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  line-height: 1.8;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}
.contact-form .form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-category-group {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.contact-category-label {
  font-weight: 700;
  color: #e5e7eb;
}
.contact-category-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem;
}
.option-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.option-check input {
  accent-color: var(--color-accent);
}
.option-check span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.option-check:hover {
  border-color: var(--color-accent);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-1px);
}
.contact-form .form-field {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}
.contact-form label {
  font-weight: 700;
  font-size: 0.95rem;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.contact-form .required {
  color: var(--color-accent);
  font-size: 0.85rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
  background: rgba(255, 255, 255, 0.1);
}
.contact-form .checkbox-field {
  margin-top: 0.25rem;
}
.contact-form .checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.contact-form .checkbox-label a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.contact-form .submit-button {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-accent), #2563eb);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form .submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}
.form-message {
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.form-message.success {
  color: var(--color-accent);
}
.form-message.error {
  color: #f87171;
}
.social-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.social-link:hover {
  transform: translateY(-1px);
  border-color: var(--color-accent);
  color: #fff;
}

.service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.filter-btn {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: #ecfdf3;
}

.nav-item-has-children {
  position: relative;
}
.nav-link-has-dropdown {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-dropdown-icon {
  font-size: 0.8rem;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.75rem;
  min-width: 260px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.2s ease;
  z-index: 10;
}
.nav-item-has-children:hover .nav-dropdown,
.nav-item-has-children:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0.2rem);
}
.nav-dropdown-item {
  display: block;
  padding: 0.6rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}
.nav-dropdown-item:hover {
  background: var(--color-secondary);
}
.nav-dropdown-label {
  font-weight: 600;
}
.nav-dropdown-description {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.blog .section-subtitle {
  margin-bottom: 1.5rem;
  color: var(--color-muted);
  text-align: center;
}
.blog-cta {
  text-align: center;
  margin-top: 1.5rem;
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}
.blog-filter-btn {
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  cursor: pointer;
}
.blog-filter-btn.active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: #ecfdf3;
}
.blog-filter-empty {
  text-align: center;
  margin-top: 1rem;
  color: var(--color-muted);
}
.blog-recommendations {
  padding: 4rem 0;
  background: var(--color-secondary);
}
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.recommendation-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.5rem;
}

.service-page {
  background: var(--color-background);
}
.service-hero {
  padding: 5rem 0 3rem;
  background: #fff;
}
.service-hero .service-badge {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}
.service-hero .hero-description {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}
.pain-points {
  padding: 4rem 0;
}
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.pain-point-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.2rem;
  background: #fff;
}
.pain-point-card .icon {
  font-size: 1.5rem;
}
.solution-preview {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
}
.service-packages {
  padding: 4rem 0;
  background: var(--color-secondary);
}
.service-packages h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.package-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.package-card .package-price {
  font-size: 1.3rem;
  font-weight: 700;
}
.package-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 25px 60px rgba(34, 197, 94, 0.18);
}
.package-badge {
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  background: #ecfdf3;
  color: var(--color-accent);
  font-weight: 600;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.case-study {
  padding: 4rem 0;
}
.case-study-card {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1.5rem;
  background: #fff;
  margin-bottom: 1.5rem;
}
.case-study-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.case-results {
  display: flex;
  gap: 1rem;
}
.result-metric {
  text-align: center;
}
.result-metric .metric-value {
  font-size: 1.5rem;
  font-weight: 700;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.use-case-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  background: var(--color-secondary);
}
.service-faq {
  padding: 4rem 0;
  background: #fff;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  background: var(--color-secondary);
}
.service-contact {
  padding: 4rem 0;
  background: var(--color-secondary);
}
.final-cta {
  padding: 4rem 0;
}
.cta-card-large {
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  background: #fff;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btn-primary-large {
  padding: 0.9rem 2rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}
.btn-phone {
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-foreground);
  background: #fff;
}

.page-about .about-hero {
  padding: 5rem 0 3rem;
}
.about-hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}
.about-lede {
  line-height: 1.8;
  color: var(--color-muted);
}
.profile-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
.profile-card .profile-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.profile-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.about-mission {
  padding: 4rem 0;
  background: var(--color-secondary);
}
.mission-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--color-border);
  margin-bottom: 2rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.value-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
}
.about-expertise {
  padding: 4rem 0;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.expertise-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.2rem;
  background: #fff;
}
.expertise-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
}
.about-timeline {
  padding: 4rem 0;
  background: var(--color-secondary);
}
.timeline {
  border-left: 2px solid var(--color-border);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.timeline-item {
  position: relative;
  padding-left: 1rem;
}
.timeline-item::before {
  content: \"\";
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
}
.timeline-year {
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .hero-value-props {
    flex-direction: column;
  }
  .contact-content {
    width: 100%;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 0.5rem;
  }
  .nav-dropdown-item {
    padding-left: 0;
  }
}
.btn-secondary {
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-foreground);
  text-decoration: none;
  font-weight: 600;
}
.btn-outline {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: transparent;
  text-decoration: none;
  color: var(--color-foreground);
  font-weight: 600;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ============================================
   Archive Page Styles
   ============================================ */
.page-archive .archive-intro {
  padding: 120px 0 80px;
  background: var(--color-gray-100);
}

.archive-stats {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-gray-200);
}

.archive-stats .post-count {
  color: var(--color-gray-600);
  font-size: 14px;
  margin: 0;
}

.archive-pagination {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--color-gray-200);
}

.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  color: var(--color-black);
  text-decoration: none;
  transition: var(--transition);
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.archive-pagination .page-numbers.dots {
  border: none;
  background: transparent;
}

.archive-pagination .page-numbers.dots:hover {
  background: transparent;
  color: var(--color-black);
}

/* Blog post card with thumbnail */
.blog-post-card {
  display: flex;
  gap: 24px;
}

.blog-post-thumbnail {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
}

.blog-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-thumbnail img {
  transform: scale(1.05);
}

.blog-post-content {
  flex: 1;
}

/* ============================================
   Page Template Styles
   ============================================ */
.page-default .page-header-section {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-white) 100%);
}

.page-default .page-featured-image {
  padding: 0 0 60px;
}

.page-default .featured-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.page-default .page-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.page-default .page-content-wrapper > * {
  margin-bottom: 24px;
}

.page-default .page-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-gray-200);
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
  .blog-post-card {
    flex-direction: column;
    gap: 16px;
  }

  .blog-post-thumbnail {
    width: 100%;
    height: 200px;
  }

  .archive-pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .page-archive .archive-intro {
    padding: 80px 0 60px;
  }

  .page-default .page-header-section {
    padding: 80px 0 40px;
  }

  .page-default .page-content-wrapper {
    padding: 40px 0;
  }
}
