:root {
  --background: #f5f7fa;
  --foreground: #0f1724;
  --border: #00000014;
  --input: #ffffff;
  --primary: #0b74de;
  --primary-foreground: #ffffff;
  --secondary: #e8f4ff;
  --secondary-foreground: #064e8a;
  --muted: #f0f3f6;
  --muted-foreground: #6b7280;
  --success: #ecfdf5;
  --success-foreground: #03543f;
  --accent: #fde68a;
  --accent-foreground: #92400e;
  --destructive: #ffeded;
  --destructive-foreground: #7a1f1f;
  --warning: #fff8e1;
  --warning-foreground: #7a5a00;
  --card: #ffffff;
  --card-foreground: #0f1724;
  --sidebar: #f8fafc;
  --sidebar-foreground: #0f1724;
  --sidebar-primary: #e6f0ff;
  --sidebar-primary-foreground: #0b74de;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --font-family-body: "Inter", "IBM Plex Sans", "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-family-body, sans-serif);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow-lg {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow-sm {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.section-padding-tight {
  padding-top: 0;
}

.section-padding-blog {
  padding: 80px 0 120px;
}

.section-padding-article {
  padding: 60px 0 120px;
}

.section-padding-xl {
  padding: 140px 0 120px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 48px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

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

.btn-white {
  background-color: var(--background);
  color: var(--foreground);
}

.btn-outline-light {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
}

.btn-sm {
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.navbar {
  padding: 24px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--background);
  text-decoration: none;
  letter-spacing: -0.5px;
  justify-self: start;
}

.nav-links {
  display: flex;
  gap: 32px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 24px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  justify-self: center;
}

.nav-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-item:hover {
  color: #ffffff;
}

.nav-item.active {
  color: #ffffff;
  font-weight: 600;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
}

.lang-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.lang-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 10px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.lang-link:hover {
  color: #ffffff;
}

.lang-link.active {
  background: #ffffff;
  color: var(--foreground);
}

.navbar-light .nav-logo {
  color: var(--foreground);
}

.navbar-light .nav-links {
  background: var(--secondary);
  backdrop-filter: none;
}

.navbar-light .lang-switcher {
  background: var(--secondary);
  backdrop-filter: none;
}

.navbar-light .lang-link {
  color: var(--muted-foreground);
}

.navbar-light .lang-link:hover {
  color: var(--foreground);
}

.navbar-light .lang-link.active {
  background: var(--foreground);
  color: var(--background);
}

.navbar-light .nav-item {
  color: var(--muted-foreground);
}

.navbar-light .nav-item:hover {
  color: var(--foreground);
}

.navbar-light .nav-item.active {
  color: var(--foreground);
}

.hero-section {
  background-color: var(--foreground);
  color: var(--background);
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 32px 0;
  letter-spacing: -2px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 0 40px 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-image-container {
  position: relative;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-bar {
  margin-top: 60px;
  display: flex;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.social-link:hover {
  opacity: 1;
}

.social-link iconify-icon {
  font-size: 18px;
}

.page-header {
  background-color: var(--foreground);
  color: var(--background);
  padding: 180px 0 100px;
}

.page-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 24px 0;
  letter-spacing: -2px;
}

.page-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0;
}

.content-block {
  margin-bottom: 60px;
}

.content-block h2 {
  font-size: 32px;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.content-block p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0 0 24px 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.feature-list.feature-list-loose {
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item.feature-item-loose {
  gap: 20px;
}

.feature-icon {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-icon iconify-icon {
  font-size: 24px;
}

.feature-text strong {
  display: block;
  color: var(--foreground);
  margin-bottom: 4px;
}

.feature-text span {
  color: var(--muted-foreground);
  line-height: 1.5;
}

.feature-text.feature-text-large strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.feature-text.feature-text-large span {
  line-height: 1.6;
  font-size: 16px;
}

.cta-box {
  background: var(--secondary);
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 80px;
}

.cta-box h3 {
  font-size: 28px;
  margin: 0 0 16px 0;
}

.cta-box p {
  margin: 0 0 32px 0;
  color: var(--muted-foreground);
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 18px;
  color: var(--muted-foreground);
  margin-bottom: 64px;
  max-width: 500px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 40px;
  margin-bottom: 80px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--foreground);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(15, 23, 36, 0.08);
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--foreground);
}

.card-icon iconify-icon {
  font-size: 24px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-desc {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.calendly-section {
  margin-top: 40px;
  padding: 48px;
  background: var(--secondary);
  border-radius: var(--radius-xl);
  text-align: center;
}

.calendly-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  background: var(--background);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.calendly-icon iconify-icon {
  font-size: 24px;
  color: var(--primary);
}

.calendly-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
}

.calendly-text {
  color: var(--muted-foreground);
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-section {
  margin-top: 80px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--background);
  padding: 0 16px;
  color: var(--foreground);
  font-size: 15px;
}

.contact-textarea {
  width: 100%;
  height: 160px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--background);
  padding: 16px;
  color: var(--foreground);
  font-size: 15px;
  resize: vertical;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--muted-foreground);
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 116, 222, 0.15);
}

.form-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted-foreground);
  min-height: 20px;
}

.form-note.success {
  color: #0f8a57;
}

.form-note.error {
  color: #9b1c15;
}

.submit-btn {
  background: var(--primary);
  color: var(--primary-foreground);
  height: 52px;
  padding: 0 32px;
  border-radius: var(--radius-md);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(11, 116, 222, 0.25);
  filter: brightness(0.95);
}

.submit-btn.submit-btn-inline {
  width: auto;
  margin-top: 0;
}

.services-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

.sticky-header {
  position: sticky;
  top: 40px;
  align-self: start;
}

.sticky-header h2 {
  font-size: 40px;
  margin: 0 0 16px 0;
  line-height: 1;
  letter-spacing: -1px;
}

.sticky-header p {
  color: var(--muted-foreground);
  font-size: 16px;
  line-height: 1.6;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-item:hover,
.service-item:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 18px 36px rgba(15, 23, 36, 0.08);
  transform: translateY(-2px);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-box iconify-icon {
  font-size: 28px;
}

.service-info h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 600;
}

.service-info p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.blog-header h2 {
  font-size: 32px;
  margin: 0;
  letter-spacing: -1px;
}

.blog-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background-color: var(--muted);
}

.article-content h3 {
  font-size: 24px;
  margin: 0 0 12px 0;
  line-height: 1.3;
  font-weight: 700;
}

.article-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

.article-meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-meta-row {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.article-meta-row .article-meta {
  margin-bottom: 0;
}

.article-date {
  font-weight: 500;
}

.article-cta {
  margin-top: 16px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.blog-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.blog-image {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--muted);
}

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

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e6edf6, #f6f8fb);
}

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

.blog-content {
  flex: 1;
  padding-top: 8px;
}

.blog-date {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 4px;
  display: block;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 12px;
  white-space: nowrap;
}

.blog-category {
  padding: 2px 10px;
  border-radius: 999px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 12px;
  font-weight: 500;
}

.blog-reading-time {
  font-size: 13px;
  color: var(--muted-foreground);
}

.blog-meta-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--muted-foreground);
}

.blog-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  color: var(--foreground);
}

.blog-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0 0 24px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.page-link {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--foreground);
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.page-link:hover {
  background-color: var(--secondary);
}

.page-link.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.page-link.disabled {
  color: var(--muted-foreground);
  pointer-events: none;
  opacity: 0.5;
}

.page-link-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-link-icon iconify-icon {
  font-size: 16px;
  color: currentColor;
}

.pagination-ellipsis {
  color: var(--muted-foreground);
  margin: 0 4px;
}

.taxonomy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.taxonomy-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  text-decoration: none;
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.taxonomy-item:hover,
.taxonomy-item:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(15, 23, 36, 0.08);
  transform: translateY(-2px);
}

.taxonomy-name {
  font-weight: 600;
}

.taxonomy-count {
  font-size: 12px;
  color: var(--muted-foreground);
}

.taxonomy-empty {
  color: var(--muted-foreground);
  font-size: 16px;
}

.taxonomy-posts {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.taxonomy-post-title {
  font-size: 24px;
  font-weight: 700;
  margin: 8px 0 12px;
  letter-spacing: -0.4px;
}

.taxonomy-post-title a {
  color: var(--foreground);
  text-decoration: none;
}

.taxonomy-post-title a:hover {
  color: var(--primary);
}

.taxonomy-post-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0 0 16px;
}

.article-header {
  background-color: var(--foreground);
  color: var(--background);
  padding: 180px 0 80px;
}

.article-header-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  align-items: center;
}

.article-meta-separator {
  opacity: 0.6;
}

.article-tag {
  color: var(--primary);
  font-weight: 500;
}

.article-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 32px 0;
  letter-spacing: -1px;
  max-width: 900px;
}

.article-lead {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0;
}

.article-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--foreground);
}

.article-body p {
  margin-bottom: 32px;
}

.article-body h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 64px 0 24px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.article-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 48px 0 16px;
  line-height: 1.3;
}

.article-body ul {
  margin-bottom: 32px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 12px;
}

.article-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-body a:hover {
  color: var(--primary-foreground);
  background: var(--primary);
  text-decoration: none;
}

.article-body pre {
  background-color: #1e1e1e;
  color: #e0e0e0;
  padding: 24px;
  border-radius: var(--radius-md);
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 14px;
  line-height: 1.6;
  margin: 32px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
}

.article-body pre code {
  color: inherit;
  background: none;
  padding: 0;
}

.article-body code {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 0.95em;
  background: var(--muted);
  padding: 2px 6px;
  border-radius: 4px;
}

.code-block {
  background-color: #1e1e1e;
  color: #e0e0e0;
  padding: 24px;
  border-radius: var(--radius-md);
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 14px;
  line-height: 1.6;
  margin: 32px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  white-space: pre;
}

.code-keyword {
  color: #569cd6;
}

.code-string {
  color: #ce9178;
}

.code-function {
  color: #dcdcaa;
}

.code-comment {
  color: #6a9955;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 40px;
}

.back-link:hover {
  color: var(--foreground);
}

.back-link-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-link-icon iconify-icon {
  font-size: 16px;
  color: currentColor;
}

.footer-minimal {
  background-color: var(--secondary);
  padding: 24px 0;
}

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

.footer-middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-middle-start {
  align-items: flex-start;
}

.footer-copy {
  color: var(--muted-foreground);
  font-size: 13px;
  white-space: nowrap;
}

.footer-nav-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav-center a {
  color: var(--foreground);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: var(--card);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background-color: var(--foreground);
  border-color: var(--foreground);
  color: var(--background);
}

.footer-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials iconify-icon {
  font-size: 20px;
  color: inherit;
}

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

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-image-container {
    height: 420px;
  }

  .page-title {
    font-size: 56px;
  }

  .article-title {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

  .container-narrow {
    padding: 0 24px;
  }

  .container-narrow-lg {
    padding: 0 24px;
  }

  .container-narrow-sm {
    padding: 0 24px;
  }

  .navbar {
    position: relative;
    padding: 20px 24px;
    background: var(--foreground);
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .navbar.navbar-light {
    background: var(--background);
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .nav-actions {
    justify-self: center;
  }

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

  .sticky-header {
    position: static;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-item {
    flex-direction: column;
  }

  .blog-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .blog-content {
    padding-top: 0;
  }

  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .section-padding {
    padding: 70px 0;
  }

  .page-header {
    padding: 140px 0 80px;
  }

  .section-padding-article {
    padding: 60px 0 90px;
  }

  .article-header {
    padding: 140px 0 70px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .calendly-section {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .article-title {
    font-size: 34px;
  }

  .article-lead {
    font-size: 18px;
  }

  .article-header-meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog-meta {
    flex-wrap: wrap;
  }

  .page-title {
    font-size: 40px;
  }

  .page-subtitle {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .social-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-item {
    flex-direction: column;
  }

  .feature-item {
    flex-direction: column;
  }

  .cta-box {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-middle {
    align-items: flex-start;
  }
}
