/* Shared site theme */
:root {
  --bg-primary: #f6f1ec;
  --bg-secondary: #ffffff;
  --bg-tertiary: #1b2331;
  --bg-alt: #eef1f5;

  --accent-primary: #f7e3d3;
  --accent-secondary: #116dff;
  --accent-strong: #19222d;
  --accent-soft: #e8ddd2;

  --text-primary: #19222d;
  --text-secondary: #4f5965;
  --text-muted: #7c8792;
  --text-on-dark: #f6eadf;

  --border-color: rgba(25, 34, 45, 0.12);
  --border-hover: rgba(25, 34, 45, 0.2);
  --card-bg: rgba(255, 255, 255, 0.94);
  --card-hover: #ffffff;

  --font-title: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --success-color: #10b981;
  --error-color: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.08);

  --max-width: 1200px;
  --header-height: 78px;
  --shadow-soft: 0 24px 60px -36px rgba(25, 34, 45, 0.35);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.35rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

p.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  color: var(--text-secondary);
  font-weight: 400;
}

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

a:hover {
  color: var(--accent-secondary);
}

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

.section-padding {
  padding: 7rem 0;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: background var(--transition-fast);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px -34px rgba(25, 34, 45, 0.45);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  color: var(--text-primary);
}

.logo-img {
  height: 84px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--accent-strong);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-secondary);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-links .nav-cta::after,
.nav-links .btn::after {
  display: none;
}

.nav-cta {
  padding: 0.55rem 1.2rem;
}

/* Hamburger Menu */
.menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  width: 48px;
  height: 48px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-btn__burger {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: background var(--transition-fast);
}

.menu-btn__burger::before,
.menu-btn__burger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition-fast);
}

.menu-btn__burger::before {
  top: -10px;
}

.menu-btn__burger::after {
  top: 10px;
}

/* Menu Toggle Animation */
.menu-btn.open .menu-btn__burger {
  background: transparent;
}

.menu-btn.open .menu-btn__burger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn.open .menu-btn__burger::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(82vw, 320px);
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid var(--border-color);
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  transition: right var(--transition-normal);
}

.nav-links.open {
  right: 0;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 1rem);
  padding-bottom: 4.5rem;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero > .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 0;
  align-items: stretch;
  min-height: 720px;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-soft);
}

.hero-content {
  background: var(--bg-tertiary);
  color: var(--text-on-dark);
  padding: 5.25rem 4.6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--text-on-dark);
  max-width: 11ch;
}

.hero-content h1 span {
  display: inline;
  color: inherit;
}

.hero-content p {
  margin-bottom: 1rem;
  color: rgba(246, 234, 223, 0.86);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-bottom: 3rem;
  }

  .hero-content {
    padding: 3rem 1.5rem 2.75rem;
  }

  .hero-image-wrapper {
    min-height: 360px;
  }

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

.hero-visual {
  position: relative;
  min-height: 100%;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 720px;
}

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

/* Services Glance */
.services-glance {
  background: var(--accent-primary);
  border-top: 1px solid rgba(25, 34, 45, 0.08);
}

.services-header {
  margin-bottom: 5rem;
}

.services-header h2 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.services-glance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.75rem 3rem;
}

.service-glance-item {
  text-align: center;
}

.service-glance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 1.8rem;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--text-primary);
}

.service-glance-item h3 {
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 1.42;
  margin-bottom: 1.15rem;
  max-width: 16rem;
  margin-left: auto;
  margin-right: auto;
}

.service-glance-item p {
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 15rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: var(--text-primary);
}

/* Statement banner */
.statement-banner {
  background: var(--bg-tertiary);
}

.statement-banner-inner {
  max-width: 1360px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-on-dark);
  padding: 1rem 3rem;
}

.statement-banner-inner h2 {
  color: var(--text-on-dark);
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  max-width: 16ch;
  margin: 0 auto 2.5rem;
}

/* SMB split */
.smb-section {
  background: var(--accent-primary);
}

.smb-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}

.smb-copy {
  padding: 4.75rem 5.5rem 4.5rem 5.5rem;
}

.smb-copy h2 {
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 1.05;
  max-width: 9ch;
  margin-bottom: 2rem;
}

.smb-copy p {
  font-size: 1rem;
  line-height: 1.55;
  max-width: 40rem;
}

.smb-showcase {
  position: relative;
  background: #f6f7fa;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smb-showcase-media {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

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

.smb-showcase-content {
  position: relative;
  z-index: 1;
  max-width: 30rem;
  text-align: center;
  padding: 2rem;
}

.smb-showcase-content h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.smb-showcase-content p {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--text-primary);
}

.smb-showcase-controls {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.showcase-arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(25, 34, 45, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-primary);
  font-size: 2rem;
  line-height: 1;
  cursor: default;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--text-primary);
  box-shadow: 0 16px 32px -24px rgba(25, 34, 45, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -24px rgba(25, 34, 45, 0.55);
  color: var(--text-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.btn-secondary:hover {
  background: var(--bg-primary);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
  border-radius: 999px;
}

.btn-outline-dark:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.35);
}

/* Grid & Cards (Services) */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

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

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 18px 45px -36px rgba(25, 34, 45, 0.32);
}

.card:hover {
  transform: translateY(-4px);
  background: var(--card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 24px 48px -36px rgba(25, 34, 45, 0.38);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Feature Split Sections (Privacy, Setup, Responsible AI) */
.split-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

@media (max-width: 992px) {
  .split-grid, .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.split-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.split-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bullet-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.bullet-item {
  display: flex;
  gap: 1rem;
}

.bullet-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--accent-secondary);
}

.bullet-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.bullet-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* How We Work Section */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  position: relative;
}

.workflow-step {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  transition: all var(--transition-normal);
  box-shadow: 0 20px 40px -36px rgba(25, 34, 45, 0.28);
}

.workflow-step:hover {
  transform: translateY(-4px);
  background: var(--card-hover);
  border-color: var(--border-hover);
}

.step-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(17, 109, 255, 0.22);
  margin-bottom: 1rem;
  display: block;
}

.workflow-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.workflow-step ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.workflow-step li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.25rem;
}

.workflow-step li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
}

/* Testimonials / Quotes */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: 0 22px 46px -38px rgba(25, 34, 45, 0.32);
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  line-height: 1.5;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  color: var(--accent-secondary);
  opacity: 0.15;
  font-family: Georgia, serif;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 22px 44px -38px rgba(25, 34, 45, 0.32);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.team-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-tertiary);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

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

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

.team-info {
  padding: 2.5rem;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--accent-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: block;
}

.team-bio {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.team-bio li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.25rem;
}

.team-bio li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: bold;
}

/* FAQs Section */
.faqs-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: var(--card-bg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--text-primary);
  font-weight: 600;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  color: var(--text-primary);
}

.faq-icon::before {
  content: '+';
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Active State for FAQ */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust as needed */
}

/* Contact & Form Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.contact-detail-item svg {
  color: var(--accent-secondary);
}

/* Premium Form Styling */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 3rem;
  box-shadow: 0 24px 50px -38px rgba(25, 34, 45, 0.34);
}

@media (max-width: 576px) {
  .form-card {
    padding: 2rem 1.5rem;
  }
}

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

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

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

.form-group.full-width {
  grid-column: span 2;
}

@media (max-width: 576px) {
  .form-group.full-width {
    grid-column: span 1;
  }
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: rgba(17, 109, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(17, 109, 255, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Modern Validation Feedback (Using Baseline user-invalid) */
.form-control:user-invalid {
  border-color: var(--error-color);
  background-color: rgba(239, 68, 68, 0.03);
}

.form-control:user-valid {
  border-color: var(--success-color);
}

.error-message {
  display: none;
  color: var(--error-color);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

.form-control:user-invalid + .error-message {
  display: block;
}

/* Form Submit Response Messages */
.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  display: none;
  font-weight: 500;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success-color);
  color: var(--success-color);
}

.form-status.error {
  display: block;
  background: var(--error-bg);
  border: 1px solid var(--error-color);
  color: var(--error-color);
}

/* Footer styling */
footer {
  border-top: 1px solid var(--border-color);
  background: #ffffff;
  padding: 4rem 0;
}

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

  .hero-grid {
    min-height: 0;
  }

  .hero-content {
    padding: 3.75rem 2.25rem;
  }

  .hero-image-wrapper {
    min-height: 440px;
  }

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

  .smb-copy {
    padding: 4rem 2.25rem;
  }

  .smb-showcase {
    min-height: 520px;
  }
}

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

  .logo-img {
    height: 68px;
  }

  .hero-content {
    padding: 3rem 1.5rem 2.75rem;
  }

  .hero-image-wrapper {
    min-height: 360px;
  }

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

  .services-header {
    margin-bottom: 3.25rem;
  }

  .services-glance-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .statement-banner-inner {
    padding: 0;
  }

  .smb-copy {
    padding: 3.25rem 1.5rem;
  }

  .smb-showcase {
    min-height: 420px;
  }

  .smb-showcase-controls {
    right: 1rem;
    bottom: 1rem;
  }
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 576px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

/* Case Studies Page Styling */
.case-studies-hero {
  padding-top: calc(var(--header-height) + 6rem);
  padding-bottom: 4rem;
  background: var(--bg-primary);
}

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

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 22px 44px -38px rgba(25, 34, 45, 0.3);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

.blog-img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-tertiary);
  overflow: hidden;
  position: relative;
}

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

.blog-card:hover .blog-img {
  transform: scale(1.03);
}

.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  list-style: none;
}

.blog-content h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.blog-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-secondary);
  font-weight: 600;
  font-family: var(--font-title);
  font-size: 0.95rem;
}

.blog-link-btn svg {
  transition: transform var(--transition-fast);
}

.blog-card:hover .blog-link-btn svg {
  transform: translateX(4px);
}

/* Post Article Page Styling */
.post-header {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.post-header h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.post-meta-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.post-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.post-body {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 8rem;
}

.post-body h2 {
  font-size: 1.75rem;
  margin: 3rem 0 1.25rem;
}

.post-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  color: var(--text-secondary);
}

.post-body ul, .post-body ol {
  margin-bottom: 1.75rem;
  padding-left: 2rem;
  display: grid;
  gap: 0.75rem;
}

.post-body li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.post-body blockquote {
  border-left: 4px solid var(--accent-primary);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  font-style: italic;
  color: var(--text-primary);
}

.post-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}

.post-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
  font-family: var(--font-title);
}

.post-card ul {
  margin-bottom: 0;
  gap: 0.5rem;
}
