/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Premium Black & White Theme with Gradients */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 0%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 0%);
  --primary: hsl(0, 0%, 0%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(0, 0%, 95%);
  --secondary-foreground: hsl(0, 0%, 0%);
  --muted: hsl(0, 0%, 92%);
  --muted-foreground: hsl(0, 0%, 45%);
  --accent: hsl(0, 0%, 8%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(0, 0%, 88%);
  --input: hsl(0, 0%, 92%);
  --radius: 0.75rem;
  
  /* Gradients */
  --hero-gradient: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  --accent-gradient: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  --service-gradient: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
  --stats-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
  --glow-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Container */
.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-wide {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-wide {
    padding: 0 2rem;
  }
}

/* Section Padding */
.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 8rem 0;
  }
}

/* Header / Navbar */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  height: 8rem;
  width: auto;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(to right, #1a1a1a, #000000);
  color: var(--background);
}

.btn-primary:hover {
  background: linear-gradient(to right, #000000, #1a1a1a);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: black;
}

.btn-white {
  background: white;
  color: black;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  margin-bottom: 2.5rem;
  transition: border-color 0.3s;
}

.hero-badge:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 6rem;
  }
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.5rem;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.trust-indicators {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .partners {
    gap: 4rem;
  }
}

.partners span {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .partners span {
    font-size: 1.5rem;
  }
}

.partners span:hover {
  color: white;
}

/* Services Section */
.services-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
}

.section-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--foreground);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
}

.services-header h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .services-header h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .services-header h2 {
    font-size: 3.75rem;
  }
}

.services-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .services-header p {
    font-size: 1.25rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    gap: 2.5rem;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  transition: all 0.5s;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
  text-decoration: none;
  display: block;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2.5rem;
  }
}

.service-card:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 1rem;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 10;
  width: 5rem;
  height: 5rem;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s;
}

.service-card:hover .service-icon {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .service-card h3 {
    font-size: 1.875rem;
  }
}

.service-card p {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .service-card p {
    font-size: 1.125rem;
  }
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
  font-weight: 700;
  position: relative;
  z-index: 10;
  font-size: 1.125rem;
}

.service-link svg {
  transition: transform 0.3s;
}

.service-card:hover .service-link svg {
  transform: translateX(0.75rem);
}

.service-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--accent-gradient);
  transition: width 0.5s;
}

.service-card:hover .service-accent-line {
  width: 100%;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, white, #f9fafb, white);
  position: relative;
  overflow: hidden;
}

.cta-bg-decoration {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.cta-bg-decoration.top {
  top: 0;
  left: 25%;
  transform: translateY(-50%);
  opacity: 0.2;
}

.cta-bg-decoration.bottom {
  bottom: 0;
  right: 25%;
  transform: translateY(50%);
  opacity: 0.2;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: black;
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-content h2 {
    font-size: 3.75rem;
  }
}

.cta-content p {
  color: #374151;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
}

@media (min-width: 768px) {
  .cta-content p {
    font-size: 1.5rem;
  }
}

.trust-badges {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
}

.trust-badge-value {
  font-size: 1.875rem;
  font-weight: 900;
  color: black;
  margin-bottom: 0.5rem;
}

.trust-badge-label {
  color: #374151;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-decoration {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.footer-decoration.top-left {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.footer-decoration.bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.footer-content {
  position: relative;
  z-index: 10;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  height: 2rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.social-link svg {
  width: 1.125rem;
  height: 1.125rem;
  color: white;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-divider {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Page Header */
.page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.page-header.dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.page-header-decoration {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.page-header.dark .page-header-decoration {
  background: rgba(255, 255, 255, 0.1);
}

.page-header-decoration.right {
  top: 25%;
  right: 0;
}

.page-header-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.page-header.dark h1 {
  color: white;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .page-header h1 {
    font-size: 4.5rem;
  }
}

.page-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
}

.page-header.dark p {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .page-header p {
    font-size: 1.25rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Icon styles */
svg {
  display: inline-block;
  vertical-align: middle;
}

/* Responsive grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Background utilities */
.bg-background {
  background-color: var(--background);
}

.bg-secondary {
  background-color: var(--secondary);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Layout */
.min-h-screen {
  min-height: 100vh;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

/* Contact Page Styles */
.calendly-container {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}

.calendly-embed {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.office-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s;
}

.office-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.office-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.office-card p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.office-card .small-text {
  font-size: 0.875rem;
}

/* About Page Styles */
.content-section {
  padding: 4rem 0;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prose h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .prose h2 {
    font-size: 2.25rem;
  }
}

.prose p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--card-shadow-hover);
}

.stat-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--accent-gradient);
  color: var(--accent-foreground);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--glow-shadow);
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  padding: 2rem;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: var(--card-shadow);
  border-color: var(--foreground);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  color: var(--accent-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Service Detail Page */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-card-icon {
  width: 4rem;
  height: 4rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
}

.feature-card-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--foreground);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefits-list svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* Services List Page */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

@media (min-width: 1024px) {
  .service-detail {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-detail:nth-child(even) .service-detail-content {
  order: 2;
}

@media (min-width: 1024px) {
  .service-detail:nth-child(even) .service-detail-content {
    order: 1;
  }
  
  .service-detail:nth-child(even) .service-detail-cta {
    order: 2;
  }
}

.service-detail-icon {
  width: 4rem;
  height: 4rem;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.service-detail-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.service-detail h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .service-detail h2 {
    font-size: 2.25rem;
  }
}

.service-detail p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.service-detail ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-detail ul svg {
  flex-shrink: 0;
  color: var(--accent);
}

.service-detail-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive utilities */
@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}
