/* ==========================================================================
   ENGAGE STUDIO DESIGN SYSTEM & CORE STYLES
   ========================================================================== */
:root {
  /* Colors (Octagen Light Minimalist Theme) */
  --bg-dark: #ffffff;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;

  --primary: #000000;
  --primary-hover: #ef4924;
  --primary-light: #ef4924;
  --primary-glow: rgba(239, 73, 36, 0.25);

  --accent-brand: #ef4924;
  --accent-brand-glow: rgba(239, 73, 36, 0.3);
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.2);
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  --text-main: #000000;
  --text-muted: #475569;
  --text-dim: #64748b;

  --border-color: rgba(0, 0, 0, 0.08);
  --border-color-glow: rgba(0, 0, 0, 0.2);

  /* Typography */
  --font-main: "BDO Grotesk", Arial, sans-serif;
  --font-heading: "BDO Grotesk", Arial, sans-serif;

  /* Layout & Spacing */
  --container-max: 1440px;
  --radius-sm: 2px;
  --radius-md: 2px;
  --radius-lg: 2px;
  --radius-full: 9999px;

  /* Transitions */
  --tr-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-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;
  color-scheme: light;
}

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

main {
  margin-top: 3rem;
}

main.page-inner {
  margin-top: 4.25rem;
}

/* Ambient Background Glows */
.ambient-light {
  display: none !important;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  animation: floatOrb 20s infinite ease-in-out alternate;
}

.glow-orb-1 {
  top: -10%;
  left: 20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-orb-2 {
  top: 40%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
  animation-delay: -7s;
}

.glow-orb-3 {
  bottom: -10%;
  left: 10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  animation-delay: -12s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 60px) scale(1.1);
  }

  100% {
    transform: translate(-30px, 30px) scale(0.95);
  }
}

/* Grid Overlay Background Texture */
.bg-grid-pattern {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Container Utility */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3.5vw, 3rem);
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
.font-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--primary-light) 70%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.section-tag i {
  font-size: 0.75rem;
}

/* ==========================================================================
   UNIFIED HERO TYPOGRAPHY STANDARD (ALL HERO SECTIONS ACROSS SITE)
   ========================================================================== */
.hero-title,
.about-hero-headline,
.contact-heading,
.pricing-headline,
.plan-hero-title,
.projects-page-headline,
.project-detail-title,
.blog-page-headline {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif !important;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem) !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  color: #000000 !important;
}

.hero-subtitle,
.pricing-sub-headline,
.plan-hero-subtitle,
.project-detail-subtitle,
.projects-page-subtitle,
.blog-page-subtitle {
  font-family: var(--font-main), "BDO Grotesk", Arial, sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  color: #52525b !important;
  letter-spacing: -0.01em !important;
}

.hero-eyebrow,
.project-detail-category,
.plan-badge-pill,
.category-badge {
  font-family: var(--font-main), "BDO Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   UNIFIED SECTION HEADINGS STANDARD (ALL SECTIONS ACROSS SITE)
   ========================================================================== */
.section-title,
.projects-title,
.services-label,
.reviews-title,
.home-faq-title,
.about-section-heading,
.selected-clients-title,
.how-we-work-heading {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif !important;
  font-size: clamp(2rem, 3.8vw, 2.75rem) !important;
  font-weight: 500 !important;
  color: #000000 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
}

.section-subtitle,
.reviews-subtitle,
.story-subtitle,
.how-we-work-subheading {
  font-family: var(--font-main), "BDO Grotesk", Arial, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: #52525b !important;
  line-height: 1.5 !important;
  letter-spacing: -0.01em !important;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   GLOBAL CARD & CONTAINER RADIUS STANDARD (MAX 2PX THROUGHOUT SITE)
   ========================================================================== */
.card,
.glass-card,
.project-card,
.portfolio-card,
.project-card-image-wrapper,
.portfolio-thumb,
.project-card-img,
.portfolio-card-img,
.project-tag,
.portfolio-tag,
.projects-card,
.projects-card-thumb,
.projects-card-img,
.projects-card-tags .projects-card-tag,
.projects-card-tag,
.project-detail-showcase,
.showcase-img,
.project-detail-card,
.project-detail-sidebar,
.sidebar-card,
.pricing-card-item,
.pricing-card-light,
.pricing-card-dark,
.blog-row-item,
.blog-row-thumb,
.blog-row-img,
.blog-hero-card,
.author-bio-card,
.author-avatar,
.author-bio-avatar img,
.review-card,
.about-feature-card,
.about-feature-img,
.about-feature-right,
.about-gallery-card,
.about-gallery-card img,
.ethos-card,
.timeline-card,
.client-logo-card,
.softmaster-card,
.softmaster-image-wrapper,
.softmaster-image,
.home-faq-item,
details.home-faq-item,
.faq-accordion-item,
.contact-form-col,
.contact-info-col,
.contact-image-wrapper,
.contact-office-img,
.contact-input,
.contact-textarea,
.form-submit-success,
.quote-modal-dialog,
.quote-modal-close,
.form-field-input,
.select-input,
.quick-answer-box,
.table-responsive,
.article-cta-box {
  border-radius: 2px !important;
}

/* Buttons */
/* Global Squared Off Buttons Rule */
button,
.btn,
.btn-primary,
.btn-secondary,
.btn-book-meeting,
.projects-view-all-btn,
.slider-arrow,
.showcase-card-btn,
.filter-btn,
.projects-filter-btn,
.mobile-menu-cta,
.mobile-nav-close,
.btn-send-contact,
.btn-explore,
.btn-pricing-quote,
.btn-plan-whatsapp,
.btn-banner-whatsapp,
.btn-plan-quote,
.btn-banner-quote,
.btn-modal-submit,
.btn-success-close,
.sidebar-cta-btn,
.toggle-btn,
.timeline-nav-btn,
.billing-toggle-btn,
.btn-secondary-link,
.btn-explore-plan,
.btn-card-cta,
.btn-purchase-plan,
.btn-questions-contact,
[class*="btn"],
input[type="submit"],
input[type="button"] {
  border-radius: 0 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.6rem;
  border-radius: 0 !important;
  font-weight: 500;
  font-size: 0.975rem;
  text-decoration: none;
  transition: all var(--tr-fast);
  cursor: pointer;
  border: 1px solid transparent;
  outline: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Primary Button: Black button with orange hover */
.btn-primary {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 0 !important;
  padding: 0.85rem 1.6rem;
  font-weight: 500;
  box-shadow: none;
}

.btn-primary:hover {
  background: #ef4924;
  border-color: #ef4924;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 73, 36, 0.35);
}

/* Secondary Button: Hollow button (outline + text), turns black with white text on hover */
.btn-secondary {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 0 !important;
  padding: 0.85rem 1.6rem;
  font-weight: 500;
  backdrop-filter: none;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg);
  transition: var(--tr-normal);
  pointer-events: none;
}

.btn-glow:hover::after {
  animation: shine 1.5s ease-out;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--tr-normal);
}

.glass-card:hover {
  border-color: var(--border-color-glow);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.15);
}

/* Announcement Bar & Navbar */
.announcement-bar {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  z-index: 101;
}

.announcement-bar a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.5rem;
}

.announcement-bar a:hover {
  text-decoration: underline;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--tr-normal);
  padding: 0.9rem 0;
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 0.65rem 0;
  background: #ffffff;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.03em;
}

.brand-logo-img {
  height: 50px;
  max-height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 350;
  text-transform: none;
  letter-spacing: -0.01em;
  transition: opacity var(--tr-fast), color var(--tr-fast);
  position: relative;
  padding: 0.2rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #ef4924;
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: rgba(239, 73, 36, 0.2);
  transition: width var(--tr-fast);
  display: block;
}

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

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

.btn-book-meeting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 0 !important;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--tr-fast);
}

.btn-book-meeting:hover {
  background-color: #ef4924;
  border-color: #ef4924;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(239, 73, 36, 0.3);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Nav Overlay Menu (Slide from right, 98% width) */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 98vw;
  max-width: 98vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav-overlay.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.5rem 2rem;
  overflow-y: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-close {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.mobile-nav-close:hover {
  background: #ef4924;
  color: #ffffff;
}

.mobile-nav-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.mobile-nav-links li {
  width: 100%;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  border-radius: 2px !important;
  transition: all var(--tr-fast);
  text-align: left;
}

.mobile-nav-links a i {
  font-size: 0.95rem;
  color: var(--text-dim);
  transition: transform var(--tr-fast), color var(--tr-fast);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: #ef4924;
  background: rgba(239, 73, 36, 0.06);
  padding-left: 1.25rem;
}

.mobile-nav-links a:hover i,
.mobile-nav-links a.active i {
  color: #ef4924;
  transform: translateX(4px);
}

.mobile-nav-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu-cta {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 0 !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all var(--tr-fast);
}

.mobile-menu-cta:hover {
  background-color: #ef4924;
  border-color: #ef4924;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(239, 73, 36, 0.35);
}

.mobile-nav-contact-quick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
}

.mobile-nav-contact-quick a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--tr-fast);
}

.mobile-nav-contact-quick a:hover {
  color: #ef4924;
}

/* Hero Section */
.hero-section {
  padding: 4.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
}

.hero-content {
  max-width: 1150px;
  margin: 0;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: #f4f4f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #18181b;
  font-family: "BDO Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-eyebrow .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #000000;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  max-width: 1050px;
  text-align: left;
}

.hero-subtitle {
  font-family: var(--font-main), "BDO Grotesk", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #52525b;
  font-size: 1.15rem;
  line-height: 1.55;
  margin-bottom: 2.5rem;
  max-width: 920px;
  text-align: left;
  letter-spacing: -0.01em;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Hero Showcase Grid Section */
.hero-showcase-section {
  padding: 0 0 5rem;
  background: #ffffff;
}

.hero-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.showcase-card {
  position: relative;
  height: 440px;
  border-radius: 2px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background-color: #18181b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.showcase-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.1) 40%,
      rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.showcase-card-content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.showcase-card-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 95%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.showcase-card-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-family: "BDO Grotesk", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.showcase-card:hover .showcase-card-btn {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
  .hero-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-card {
    height: 380px;
  }
}

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

  .showcase-card {
    height: 350px;
  }
}

/* Hero Demo Card */
.hero-demo-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
}

.hero-demo-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(14, 18, 29, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 40px var(--primary-glow);
  overflow: hidden;
}

.demo-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.window-dots {
  display: flex;
  gap: 0.5rem;
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background-color: #ff5f56;
}

.dot-yellow {
  background-color: #ffbd2e;
}

.dot-green {
  background-color: #27c93f;
}

.window-title {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: monospace;
}

.window-badges {
  display: flex;
  gap: 0.5rem;
}

.window-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 600;
}

.demo-content-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  min-height: 340px;
}

.demo-sidebar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.demo-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--tr-fast);
  margin-bottom: 0.4rem;
}

.demo-menu-item:hover,
.demo-menu-item.active {
  background: rgba(99, 102, 241, 0.15);
  color: var(--text-main);
}

.demo-menu-item.active i {
  color: var(--primary-light);
}

.demo-viewport {
  background: #090c14;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.code-preview-block {
  font-family: monospace;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.code-keyword {
  color: #f472b6;
}

.code-func {
  color: #60a5fa;
}

.code-str {
  color: #34d399;
}

.floating-tech-badge {
  position: absolute;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(14, 18, 29, 0.9);
  border: 1px solid var(--border-color-glow);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  animation: floatBadge 6s infinite ease-in-out alternate;
}

.badge-top-right {
  top: -20px;
  right: -20px;
  animation-delay: -1s;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: -3.5s;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

/* Metrics Bar */
.metrics-bar {
  margin-top: 5rem;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric-item h3 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.metric-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Logo Strip Section (Below Hero) */
.logo-strip-section {
  padding: 2.25rem 0 2.75rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.logo-strip-container {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.logo-strip-track {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  width: max-content;
  animation: logoStripScroll 35s linear infinite;
  padding: 0.35rem 0;
}

.logo-strip-track:hover {
  animation-play-state: paused;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: #71717a;
  opacity: 0.7;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
}

.logo-item:hover {
  opacity: 1;
  color: #000000;
  transform: translateY(-2px);
}

/* Selected Clients Section (About Page) */
.selected-clients-section {
  padding: 5rem 0 6rem;
  background-color: #ffffff;
}

.selected-clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.selected-clients-title-cell {
  display: flex;
  align-items: flex-start;
  padding-top: 0.25rem;
}

.selected-clients-title {
  font-family: var(--font-main), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: #0d0d0d;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.selected-clients-empty-cell {
  display: block;
}

.client-logo-card {
  background-color: #f6f6f3;
  border-radius: 2px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.client-logo-card:hover {
  background-color: #ededea;
  transform: translateY(-2px);
}

.logo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  user-select: none;
}

/* Individual Logo Visual Styles */
.logo-softmaster {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.logo-ceyora {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.logo-procurio {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.logo-alkhalijiya {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.logo-oneglobe {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.logo-williams {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.logo-noma {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}

.logo-ajar {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.logo-athreya {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.logo-civillanka {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.logo-thompson {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.logo-galaboda {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.logo-trinity {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.logo-centralchamber {
  font-family: var(--font-main), -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
}

/* Selected Clients Responsive Rules */
@media (max-width: 1024px) {
  .selected-clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .selected-clients-title-cell {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
  }
  .selected-clients-empty-cell {
    display: none;
  }
}

@media (max-width: 640px) {
  .selected-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .selected-clients-title {
    font-size: 1.35rem;
  }
  .client-logo-card {
    min-height: 90px;
    padding: 1.25rem 0.75rem;
  }
}

@keyframes logoStripScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Legacy Marquee Section support */
.marquee-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.marquee-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity var(--tr-fast);
}

.marquee-item:hover {
  opacity: 1;
  color: var(--text-main);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   OCTAGEN MINIMALIST SERVICES SECTION ("What we bring to the table")
   ========================================================================== */
.octagen-services-section {
  padding: 4.5rem 0 4rem;
  background: #ffffff;
  color: #000000;
  position: relative;
}

/* ==========================================================================
   ABOUT US FEATURE CARD SECTION (OCTAGEN MINIMALIST)
   ========================================================================== */
.about-feature-outer-section {
  padding: 3.5rem 0 7.5rem;
  background: white;
}

.services-header-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .octagen-services-section {
    padding: 3.5rem 0 7.5rem;
  }

  .services-header-row {
    margin-bottom: 3rem;
  }
}

.services-label {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.025em;
  text-align: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 1rem;
}

.service-row {
  position: sticky;
  top: calc(100px + (var(--i, 1) - 1) * 20px);
  z-index: var(--i, 1);
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  box-shadow: none;
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.service-row:first-child {
  border-top: none;
}

.service-row:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 3rem 0;
    top: calc(80px + (var(--i, 1) - 1) * 16px);
  }
}

/* ==========================================================================
   FEATURED WORK SHOWCASE SECTION (OCTAGEN MINIMALIST DESIGN)
   ========================================================================== */
.featured-projects-section {
  padding: 4.5rem 0 3.5rem;
  background: #ffffff;
  color: #000000;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.featured-projects-section .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(1.25rem, 3.5vw, 3rem);
  padding-right: clamp(1.25rem, 3.5vw, 3rem);
  box-sizing: border-box;
}

.projects-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.75rem;
  text-align: left;
}

@media (max-width: 768px) {
  .projects-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.projects-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-align: left;
}

.projects-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 0 !important;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--tr-fast);
  white-space: nowrap;
}

.projects-view-all-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
}

.projects-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.75rem;
  row-gap: 3.75rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 868px) {

  .projects-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}

.project-card,
.portfolio-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid #e8e8ec;
  transition: transform 0.3s ease;
}

.project-card:hover,
.portfolio-card:hover {
  transform: translateY(-4px);
}

.project-card-image-wrapper,
.portfolio-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  overflow: hidden;
  background: #f4f4f5;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

.project-card-img,
.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-img,
.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.03);
}

.project-card-body,
.portfolio-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-card-title,
.portfolio-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: rgb(0, 0, 0);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.project-card-desc,
.portfolio-desc {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: #52525b;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.project-tags,
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.project-tag,
.portfolio-tag {
  font-family: var(--font-main);
  font-size: 0.825rem;
  color: #3f3f46;
  background: #f4f4f5;
  padding: 0.375rem 0.85rem;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   ABOUT US FEATURE CARD SECTION (OCTAGEN MINIMALIST)
   ========================================================================== */
.about-feature-outer-section {
  padding: 3.5rem 0 7.5rem;
  background: white;
}

.about-feature-wrapper {
  margin: 0 10px;
  width: calc(100% - 20px);
}

.about-feature-card {
  background: #000000;
  color: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12); */
  width: 100%;
}

@media (max-width: 992px) {
  .about-feature-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.about-feature-left {
  padding: 4.5rem 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .about-feature-left {
    padding: 3rem 2.25rem;
  }
}

@media (max-width: 576px) {
  .about-feature-left {
    padding: 2.25rem 1.5rem;
  }
}

.about-tag {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 400;
  color: #e4e4e7;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.about-feature-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 680px;
}

/* About Us Integrated Stats Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
  }
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-stat-label {
  font-family: var(--font-main);
  font-size: 0.825rem;
  color: #a1a1aa;
  line-height: 1.35;
}

.about-feature-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.about-metric {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 280px;
}

.about-metric-number {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 5.8vw, 5.4rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.about-metric-label {
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: #a1a1aa;
  line-height: 1.38;
}

.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #d4d4d8 !important;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none !important;
  position: relative;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  font-family: var(--font-main);
}

.about-cta-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-cta-link .link-arrow {
  display: inline-block;
  font-size: 1.15rem;
  line-height: 1;
  color: #ffffff;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-cta-link:hover {
  color: #ffffff !important;
}

.about-cta-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.about-cta-link:hover .link-arrow {
  transform: translateX(6px);
}

.about-feature-right {
  position: relative;
  overflow: hidden;
  padding: 10px;
}

@media (max-width: 992px) {
  .about-feature-right {
    min-height: 420px;
  }
}

.about-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.about-glass-badge {
  position: absolute;
  top: 2.25rem;
  left: 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-glass-badge i {
  font-size: 1.15rem;
  color: #ffffff;
}

/* ==========================================================================
   ACHIEVEMENTS / METRICS SECTION (OCTAGEN MINIMALIST)
   ========================================================================== */
.achievements-section {
  padding: 8rem 0 9.5rem;
  background: #ffffff;
  color: #000000;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
}

.achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: flex-start;
}

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

.achievements-title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.achievements-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2.25rem 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item:nth-child(1) {
  padding-top: 0;
  padding-left: 0;
}

.stat-item:nth-child(2) {
  padding-top: 0;
  padding-right: 0;
  border-right: none;
}

.stat-item:nth-child(3) {
  padding-bottom: 0;
  padding-left: 0;
  border-bottom: none;
}

.stat-item:nth-child(4) {
  padding-bottom: 0;
  padding-right: 0;
  border-right: none;
  border-bottom: none;
}

@media (max-width: 576px) {
  .achievements-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 1.75rem 0 !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .stat-item:last-child {
    border-bottom: none !important;
  }
}

/* ==========================================================================
   CUSTOMER REVIEWS SLIDER SECTION (OCTAGEN MINIMALIST)
   ========================================================================== */
.customer-reviews-section {
  padding: 4.5rem 0 3.5rem;
  background: #ffffff;
  color: #000000;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.75rem;
  text-align: left;
}

@media (max-width: 768px) {
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.reviews-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.reviews-subtitle {
  font-family: var(--font-main), "BDO Grotesk", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #52525b;
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 600px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.slider-arrow:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.reviews-slider-wrapper {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.reviews-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}

.reviews-slider-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 380px;
  width: 380px;
  scroll-snap-align: start;
  background: #f7f7f6;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast);
}

@media (max-width: 576px) {
  .review-card {
    flex: 0 0 300px;
    width: 300px;
    padding: 1.75rem 1.5rem;
    min-height: 320px;
  }
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.review-card-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #000000;
  font-size: 0.85rem;
}

.review-quote {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.48;
  letter-spacing: -0.01em;
}

.review-author {
  margin-top: 2rem;
}

.review-author-name {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.25;
}

.review-author-title {
  font-family: var(--font-main);
  font-size: 0.825rem;
  color: #71717a;
  line-height: 1.3;
  margin-top: 0.2rem;
}

/* ==========================================================================
   HOME PAGE FAQ SECTION (SPLIT TWO-COLUMN MINIMALIST)
   ========================================================================== */
.home-faq-section {
  padding: 5.5rem 0 7rem;
  background: #ffffff;
  color: #000000;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.home-faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.home-faq-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
}

.home-faq-right {
  width: 100%;
}

.home-faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

details.home-faq-item {
  background: #f4f4f0;
  border: none;
  border-radius: 2px;
  padding: 1.35rem 1.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

details.home-faq-item:hover {
  background: #eaeae5;
}

details.home-faq-item[open] {
  background: #f4f4f0;
}

summary.home-faq-question {
  font-family: var(--font-main);
  font-size: clamp(1.025rem, 1.8vw, 1.15rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.015em;
  line-height: 1.35;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  user-select: none;
}

summary.home-faq-question::-webkit-details-marker {
  display: none;
}

.home-faq-toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-faq-toggle-icon::before,
.home-faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #000000;
  border-radius: 1px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Horizontal bar of plus */
.home-faq-toggle-icon::before {
  width: 14px;
  height: 1.5px;
}

/* Vertical bar of plus */
.home-faq-toggle-icon::after {
  width: 1.5px;
  height: 14px;
}

/* Rotate vertical bar to horizontal on open (morphs + into -) */
details[open] .home-faq-toggle-icon::after {
  transform: rotate(90deg);
}

.home-faq-answer {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  animation: faqFadeIn 0.25s ease-out forwards;
}

.home-faq-answer p {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .home-faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  details.home-faq-item {
    padding: 1.25rem 1.25rem;
    border-radius: 2px;
  }

  summary.home-faq-question {
    font-size: 1.05rem;
  }
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 5.8vw, 4.8rem);
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.stat-label {
  font-family: var(--font-main);
  font-size: 0.925rem;
  font-weight: 400;
  color: #52525b;
  line-height: 1.35;
  max-width: 190px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-description {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 400;
  color: #18181b;
  line-height: 1.5;
  margin: 0;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background-color: #f4f4f5;
  color: #27272a;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  transition: all var(--tr-fast);
  user-select: none;
}

.service-pill:hover {
  background-color: #e4e4e7;
  color: #000000;
  transform: translateY(-1px);
}

/* Services Section */
.services-section {
  padding: 7rem 0;
  position: relative;
}

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

.service-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--tr-normal);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.service-tag {
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

/* Portfolio Section */
.portfolio-section {
  padding: 6rem 0;
  position: relative;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.5rem 0 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-fast);
  text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}

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

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--tr-normal);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.portfolio-thumb {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #111726;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-visual {
  width: 85%;
  height: 85%;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform var(--tr-normal);
}

.portfolio-card:hover .portfolio-visual {
  transform: scale(1.05);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #475569;
}

.mockup-hero {
  height: 60px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-cyan) 100%);
  opacity: 0.7;
}

.mockup-bars {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
}

.mockup-bar {
  height: 16px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.portfolio-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.portfolio-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.portfolio-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.portfolio-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--accent-emerald);
  font-size: 0.825rem;
  font-weight: 600;
  margin-top: auto;
}

/* Estimator Section */
.estimator-section {
  padding: 6rem 0;
}

.estimator-container {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

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

.estimator-group {
  margin-bottom: 2rem;
}

.estimator-label {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  display: block;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
}

.option-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  cursor: pointer;
  text-align: center;
  transition: all var(--tr-fast);
  user-select: none;
}

.option-card:hover,
.option-card.selected {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
}

.option-card i {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--primary-light);
}

.option-card span {
  font-size: 0.85rem;
  font-weight: 600;
}

.slider-wrapper {
  margin-top: 1rem;
}

.custom-slider {
  width: 100%;
  accent-color: var(--primary);
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
}

.slider-val {
  font-weight: 700;
  color: var(--primary-light);
  margin-left: 0.5rem;
}

.estimator-summary-box {
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid var(--border-color-glow);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.estimator-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 1rem 0;
  font-family: var(--font-heading);
}

.estimator-timeline {
  font-size: 0.95rem;
  color: var(--accent-cyan);
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
}

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

.process-card {
  padding: 2rem;
  position: relative;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1;
}

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

.process-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Testimonials & FAQ */
.testimonials-section {
  padding: 6rem 0;
}

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

.testimonial-card {
  padding: 2rem;
}

.stars {
  color: var(--accent-amber);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.quote {
  font-size: 0.975rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-section {
  padding: 6rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all var(--tr-fast);
}

details.faq-item[open] {
  border-color: var(--border-color-glow);
  background: rgba(18, 24, 38, 0.95);
}

summary.faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

summary.faq-question::-webkit-details-marker {
  display: none;
}

summary.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-light);
  transition: transform var(--tr-fast);
}

details[open] summary.faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-page-wrapper {
  padding: 4rem 0 6rem;
  background-color: #ffffff;
  color: #000000;
}

.contact-heading {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: #000000;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
  max-width: 900px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-form-col {
  display: flex;
  flex-direction: column;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 2px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #000000;
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 1.25rem;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #000000;
  box-shadow: 0 0 0 1px #000000;
}

.contact-textarea {
  resize: vertical;
  min-height: 180px;
}

.privacy-agreement-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  margin-bottom: 1.75rem;
}

.contact-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #000000;
  cursor: pointer;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
}

.privacy-label {
  font-size: 0.95rem;
  color: #000000;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.privacy-link {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}

.privacy-link:hover {
  opacity: 0.8;
}

.btn-send-contact {
  background-color: #000000;
  color: #ffffff;
  padding: 0.85rem 2.75rem;
  border-radius: 0 !important;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid #000000;
  cursor: pointer;
  transition: all var(--tr-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-send-contact:hover {
  background-color: #ef4924;
  border-color: #ef4924;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(239, 73, 36, 0.35);
  transform: translateY(-2px);
}

.btn-send-contact:active {
  transform: scale(0.98);
}

.form-error-msg {
  color: #ef4444;
  font-size: 0.85rem;
  display: block;
  margin-top: -0.75rem;
  margin-bottom: 1rem;
}

/* Right Column Details & Image */
.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info-row.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.4rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-value[href]:hover {
  color: #000000;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-info-text {
  font-size: 0.95rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.5;
}

.contact-image-wrapper {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 1rem;
}

.contact-office-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.form-submit-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 2px;
  color: var(--accent-emerald);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  background: rgba(7, 9, 14, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

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

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

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.25rem 0 1.5rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--tr-fast);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--tr-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-dim);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* BLOG & ABOUT SPECIALIZED LAYOUT STYLES */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--tr-normal);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color-glow);
}

.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-light);
}

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

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.825rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.blog-category {
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary-light);
  font-weight: 600;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.article-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.article-body h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-main);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-main);
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEAL SYSTEM
   ========================================================================== */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(239, 73, 36, 0.4);
  }

  50% {
    transform: scale(1.25);
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(239, 73, 36, 0);
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initial Hero & Page Header Entry Animations */
.hero-eyebrow,
.about-hero-headline,
.contact-heading,
.pricing-headline,
.projects-page-headline,
.blog-page-headline,
.plan-hero-title,
.project-detail-title,
.blog-hero-title {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.eyebrow-dot {
  animation: pulseDot 2.5s infinite ease-in-out;
}

.hero-title,
.about-hero-actions,
.pricing-sub-headline,
.projects-filter-bar,
.blog-filter-container,
.plan-hero-subtitle,
.project-detail-subtitle,
.blog-hero-meta {
  opacity: 0;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-subtitle,
.about-gallery-wrapper,
.billing-toggle,
.plan-hero-action,
.project-detail-meta,
.blog-hero-author,
.blog-hero-right {
  opacity: 0;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-cta-group {
  opacity: 0;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

/* Universal Scroll Reveal Classes */
.reveal,
.reveal-up,
.reveal-fade,
.ethos-card,
.timeline-card,
.client-logo-card,
.pricing-card-item,
.projects-card,
.blog-row-item,
.contact-form-col,
.contact-info-col,
.contact-info-row,
.contact-image-wrapper,
.project-detail-card,
.sidebar-card,
.continue-card,
.author-bio-card,
.plan-detail-row,
.plan-questions-banner {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.revealed,
.revealed.reveal-scale,
.service-row.revealed,
.about-feature-card.revealed,
.review-card.revealed,
.about-stat-item.revealed,
.logo-strip-section.revealed,
.services-header-row.revealed,
.reviews-header.revealed,
.ethos-card.revealed,
.timeline-card.revealed,
.client-logo-card.revealed,
.pricing-card-item.revealed,
.projects-card.revealed,
.blog-row-item.revealed,
.contact-form-col.revealed,
.contact-info-col.revealed,
.contact-info-row.revealed,
.contact-image-wrapper.revealed,
.project-detail-card.revealed,
.sidebar-card.revealed,
.continue-card.revealed,
.author-bio-card.revealed,
.plan-detail-row.revealed,
.plan-questions-banner.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Comprehensive Staggered Delay Intervals */
.about-stat-item:nth-child(1),
.ethos-card:nth-child(1),
.timeline-card:nth-child(1),
.client-logo-card:nth-child(1),
.pricing-card-item:nth-child(1),
.projects-card:nth-child(1),
.blog-row-item:nth-child(1),
.continue-card:nth-child(1),
.contact-info-row:nth-child(1),
.plan-detail-row:nth-child(1) {
  transition-delay: 0.06s;
}

.about-stat-item:nth-child(2),
.ethos-card:nth-child(2),
.timeline-card:nth-child(2),
.client-logo-card:nth-child(2),
.pricing-card-item:nth-child(2),
.projects-card:nth-child(2),
.blog-row-item:nth-child(2),
.continue-card:nth-child(2),
.contact-info-row:nth-child(2),
.plan-detail-row:nth-child(2) {
  transition-delay: 0.14s;
}

.about-stat-item:nth-child(3),
.ethos-card:nth-child(3),
.timeline-card:nth-child(3),
.client-logo-card:nth-child(3),
.pricing-card-item:nth-child(3),
.projects-card:nth-child(3),
.blog-row-item:nth-child(3),
.continue-card:nth-child(3),
.contact-info-row:nth-child(3),
.plan-detail-row:nth-child(3) {
  transition-delay: 0.22s;
}

.about-stat-item:nth-child(4),
.ethos-card:nth-child(4),
.timeline-card:nth-child(4),
.client-logo-card:nth-child(4),
.pricing-card-item:nth-child(4),
.projects-card:nth-child(4),
.blog-row-item:nth-child(4),
.continue-card:nth-child(4),
.contact-info-row:nth-child(4) {
  transition-delay: 0.30s;
}

.review-card:nth-child(5),
.client-logo-card:nth-child(5),
.projects-card:nth-child(5),
.blog-row-item:nth-child(5),
.timeline-card:nth-child(5) {
  transition-delay: 0.36s;
}

.client-logo-card:nth-child(6),
.projects-card:nth-child(6),
.blog-row-item:nth-child(6),
.timeline-card:nth-child(6) {
  transition-delay: 0.42s;
}

.client-logo-card:nth-child(7),
.projects-card:nth-child(7) {
  transition-delay: 0.48s;
}

.client-logo-card:nth-child(8),
.projects-card:nth-child(8) {
  transition-delay: 0.54s;
}

.client-logo-card:nth-child(9),
.projects-card:nth-child(9) {
  transition-delay: 0.60s;
}

/* Card Hover & Thumbnail Zoom Micro-Interactions */
.projects-card,
.continue-card,
.blog-row-item,
.ethos-card,
.pricing-card-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.projects-card-thumb,
.continue-thumb,
.blog-row-thumb,
.project-card-image-wrapper {
  overflow: hidden;
}

.projects-card-img,
.continue-img,
.blog-row-img,
.project-card-img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-card:hover .projects-card-img,
.continue-card:hover .continue-img,
.blog-row-item:hover .blog-row-img,
.project-card:hover .project-card-img {
  transform: scale(1.04);
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-up,
  .reveal-scale,
  .reveal-fade,
  .hero-title,
  .hero-subtitle,
  .hero-cta-group,
  .about-hero-headline,
  .about-hero-actions,
  .about-gallery-wrapper,
  .contact-heading,
  .pricing-headline,
  .pricing-sub-headline,
  .projects-page-headline,
  .blog-page-headline {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Dynamic Micro-Interactions & Hover Polish */
.btn,
.slider-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.btn span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover span {
  transform: translateX(4px);
}

.service-row {
  transition: border-color 0.4s ease, opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-title {
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:hover .service-title {
  color: var(--primary-hover, #ef4924);
  transform: translateX(8px);
}

.service-pill {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-pill:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-3px) scale(1.03);
}


.about-glass-badge {
  animation: floatBadge 4s ease-in-out infinite;
}

.review-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

@media (max-width: 868px) {
  .nav-links {
    display: none;
  }

  .nav-actions .header-desktop-btn {
    display: none !important;
  }

  .mobile-toggle {
    display: block;
  }

  .metrics-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   OCTAGEN / ENGAGELANKA FOOTER SECTION
   ========================================================================== */
.octagen-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 6.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  font-family: var(--font-main);
}

.octagen-footer a,
.octagen-footer a:visited {
  text-decoration: none;
  color: inherit;
}

.octagen-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 5.5rem;
}

@media (max-width: 768px) {
  .octagen-footer-content {
    flex-direction: column;
    gap: 3rem;
  }
}

.octagen-footer-main {
  max-width: 760px;
}

.octagen-footer-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: #a1a1aa;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.octagen-footer-heading {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
}

.octagen-footer-email {
  font-size: 0.95rem;
  color: #71717a;
  font-weight: 400;
}

.octagen-footer-email a {
  color: #a1a1aa !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(161, 161, 170, 0.3);
  transition: all var(--tr-fast);
}

.octagen-footer-email a:hover {
  color: #ffffff !important;
  border-bottom-color: #ffffff;
}

.octagen-footer-cta-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.octagen-footer-phone {
  font-size: 0.95rem;
  color: #71717a;
}

.octagen-footer-phone a {
  color: #a1a1aa !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(161, 161, 170, 0.3);
  transition: all var(--tr-fast);
}

.octagen-footer-phone a:hover {
  color: #ffffff !important;
  border-bottom-color: #ffffff;
}

.octagen-footer-action-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .octagen-footer-action-wrap {
    align-items: flex-start;
  }
}

.footer-book-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #d4d4d8 !important;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none !important;
  position: relative;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.footer-book-text-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-book-text-link .link-arrow {
  display: inline-block;
  font-size: 1.15rem;
  line-height: 1;
  color: #ffffff;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-book-text-link:hover {
  color: #ffffff !important;
}

.footer-book-text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-book-text-link:hover .link-arrow {
  transform: translateX(6px);
}

.octagen-footer-socials-inline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.octagen-footer-socials-inline a {
  color: #71717a !important;
  font-size: 1.1rem;
  transition: all var(--tr-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none !important;
}

.octagen-footer-socials-inline a i {
  color: inherit;
}

.octagen-footer-socials-inline a:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Minimalist Nav Strip */
.octagen-footer-nav-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav-links a {
  color: #a1a1aa !important;
  text-decoration: none !important;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color var(--tr-fast);
}

.footer-nav-links a:hover {
  color: #ffffff !important;
}

.footer-legal-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.footer-legal-inline a {
  color: #71717a !important;
  text-decoration: none !important;
  transition: color var(--tr-fast);
}

.footer-legal-inline a:hover {
  color: #ffffff !important;
}

.footer-legal-inline .sep {
  color: #3f3f46;
}

@media (max-width: 768px) {
  .octagen-footer-nav-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  
  .footer-nav-links {
    gap: 1.25rem;
  }
}

.octagen-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  color: #71717a;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright-text,
.made-by-text {
  color: #71717a;
}

/* ==========================================================================
   PROJECTS PAGE STYLES (Clean Minimalist Portfolio Layout)
   ========================================================================== */
.projects-page-section {
  padding: 3.5rem 0 6rem;
  background-color: #ffffff;
  min-height: 80vh;
}

.projects-page-header {
  margin-bottom: 2.5rem;
  max-width: 1100px;
}

.projects-page-headline {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

/* Category Filter Bar */
.projects-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f1f4;
}

.projects-filter-btn {
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 500;
  color: #52525b;
  background: transparent;
  padding: 0.5rem 1.15rem;
  border-radius: 0 !important;
  text-decoration: none;
  border: 1px solid #e4e4e7;
  transition: all 0.2s ease;
}

.projects-filter-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.projects-filter-btn.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* 2-Column Grid */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.75rem;
  row-gap: 3.75rem;
  width: 100%;
}

@media (max-width: 868px) {
  .projects-page-grid {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}

/* Individual Project Card */
.projects-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid #e8e8ec;
  transition: transform 0.3s ease;
}

.projects-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  overflow: hidden;
  background: #f4f4f5;
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .projects-card-thumb {
    border-radius: 2px;
  }
}

.projects-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.projects-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.projects-card-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: rgb(0, 0, 0);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.projects-card-desc {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: #52525b;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.projects-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.projects-card-tag {
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: #3f3f46;
  background: #f4f4f5;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  font-weight: 500;
}

/* ==========================================================================
   INDIVIDUAL PROJECT DETAIL PAGE STYLES (Clean Minimalist Aesthetic)
   ========================================================================== */
.project-detail-section {
  padding: 3.5rem 0 6rem;
  background-color: #ffffff;
  color: #000000;
  min-height: 80vh;
}

.project-detail-back {
  margin-bottom: 2rem;
}

.back-link {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: #52525b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #000000;
}

.project-detail-header {
  max-width: 1050px;
  margin-bottom: 3rem;
}

.project-detail-category {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 500;
  color: #3f3f46;
  background: #f4f4f5;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.project-detail-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.project-detail-subtitle {
  font-family: var(--font-main), "BDO Grotesk", Arial, sans-serif;
  font-size: 1.15rem;
  color: #52525b;
  line-height: 1.55;
  max-width: 850px;
  margin-bottom: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.project-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8ec;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 500;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-value {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: #000000;
}

.meta-value-highlight {
  color: #000000;
  font-weight: 600;
}

/* Main Image Showcase */
.project-detail-showcase {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 580px;
  border-radius: 2px;
  overflow: hidden;
  background: #f4f4f5;
  margin-bottom: 4rem;
  border: 1px solid #e8e8ec;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* Grid Layout */
.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

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

.project-detail-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.project-detail-card {
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 2px;
  padding: 2.25rem;
}

.detail-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.detail-card-text {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: #52525b;
  line-height: 1.65;
  margin: 0;
}

.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 500;
  color: #18181b;
}

.result-icon {
  font-size: 0.85rem;
  color: #000000;
  background: #f4f4f5;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Sidebar */
.project-detail-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 2px;
  padding: 2rem;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1.25rem;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sidebar-tag-pill {
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: #3f3f46;
  background: #f4f4f5;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-weight: 500;
}

.sidebar-cta-box {
  border-top: 1px solid #e8e8ec;
  padding-top: 1.75rem;
}

.cta-box-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.5rem;
}

.cta-box-text {
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1.25rem;
  background: #000000;
  color: #ffffff;
  border-radius: 9999px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar-cta-btn:hover {
  background: #27272a;
  transform: translateY(-1px);
}

/* ==========================================================================
   BLOG LIST PAGE STYLES (Matching Image 1 & 2 Reference Design)
   ========================================================================== */
.blog-page-section {
  padding: 4rem 0 8rem;
  background-color: #ffffff;
  min-height: 80vh;
}

.blog-page-header {
  margin-bottom: 2.5rem;
  max-width: 960px;
}

.blog-page-headline {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

/* Category Filter Bar (Black Pill Switcher) */
.blog-filter-container {
  margin-bottom: 3.5rem;
}

.blog-filter-pill-bar {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #000000;
  padding: 4px;
  border-radius: 9999px;
}

.blog-filter-pill {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  background: transparent;
  padding: 0.45rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 0.85;
}

.blog-filter-pill:hover {
  opacity: 1;
}

.blog-filter-pill.active {
  background: #ffffff;
  color: #000000;
  opacity: 1;
}

/* Blog Rows List */
.blog-rows-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e8e8ec;
  width: 100%;
}

.blog-row-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding: 2.75rem 0;
  border-bottom: 1px solid #e8e8ec;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.blog-row-item:hover .blog-row-title {
  color: #334155;
}

.blog-row-thumb {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
  background: #f4f4f5;
  flex-shrink: 0;
}

.blog-row-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform 0.5s ease;
}

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

.blog-row-content {
  flex-grow: 1;
  max-width: 650px;
}

.blog-row-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.blog-row-excerpt {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: #52525b;
  line-height: 1.55;
  margin: 0;
}

.blog-row-meta {
  text-align: right;
  min-width: 140px;
  flex-shrink: 0;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: #71717a;
}

.blog-meta-category {
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.blog-meta-date {
  color: #8e8e93;
}

@media (max-width: 868px) {
  .blog-row-item {
    flex-direction: column;
    gap: 1.5rem;
  }

  .blog-row-thumb {
    width: 100%;
    height: 240px;
  }

  .blog-row-meta {
    text-align: left;
  }
}

/* ==========================================================================
   INDIVIDUAL BLOG POST STYLES (Matching Image 3, 4 & 5 Reference Design)
   ========================================================================== */
.blog-detail-section {
  padding: 3rem 0 8rem;
  background-color: #ffffff;
  color: #000000;
}

.blog-detail-back {
  margin-bottom: 2rem;
}

/* Black Hero Card (Matching Image 3) */
.blog-hero-card {
  background: #000000;
  border-radius: 2px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  color: #ffffff;
  margin-bottom: 4.5rem;
  overflow: hidden;
  min-height: 480px;
}

@media (max-width: 992px) {
  .blog-hero-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
  }
}

.blog-hero-meta {
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-dot {
  color: #52525b;
}

.blog-hero-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 3.5rem;
  letter-spacing: -0.025em;
}

.blog-hero-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  overflow: hidden;
  background: #27272a;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
}

.blog-hero-right {
  width: 100%;
  height: 100%;
  max-height: 440px;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
}

.blog-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* Article Content Body (Matching Image 4) */
.blog-article-content {
  max-width: 760px;
  margin: 0 auto 5.5rem;
  font-family: var(--font-main);
}

.blog-article-content .article-lead {
  font-size: 1.35rem;
  line-height: 1.5;
  color: #000000;
  font-weight: 400;
  margin-bottom: 3rem;
}

.blog-article-content h2,
.blog-article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #000000;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.blog-article-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.75rem;
}

.blog-article-content blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: #111827;
  border-left: 3px solid var(--color-primary, #423df2);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  line-height: 1.5;
  background: rgba(66, 61, 242, 0.03);
  padding: 1.25rem 1.5rem;
  border-radius: 0 2px 2px 0;
}

.blog-article-content ul,
.blog-article-content ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.blog-article-content li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 0.75rem;
}

.blog-article-content a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.blog-article-content a:hover {
  color: #1d4ed8;
}

/* Quick Answer Box */
.quick-answer-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #000000;
  border-radius: 2px;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.quick-answer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: #000000;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.quick-answer-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #0f172a;
  margin-bottom: 1rem;
}

.quick-answer-box p:last-of-type {
  margin-bottom: 0.75rem;
}

.quick-answer-note {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 1rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.75rem;
}

/* Article Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 2.5rem 0;
  border-radius: 2px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  background: #ffffff;
}

.article-table th {
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  border-bottom: 2px solid #000000;
}

.article-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: top;
}

.article-table tr:last-child td {
  border-bottom: none;
}

.article-table tr:nth-child(even) td {
  background: #f8fafc;
}

.article-table code {
  background: #e2e8f0;
  color: #0f172a;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  font-size: 0.85em;
}

/* FAQ Accordion Section inside Articles */
.faq-accordion-list {
  margin: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  padding: 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-accordion-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-accordion-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 0 !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.4;
}

.faq-accordion-answer {
  font-size: 1rem !important;
  color: #475569 !important;
  margin-bottom: 0 !important;
  line-height: 1.6 !important;
}

/* Article CTA Box */
.article-cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 2px;
  padding: 2.5rem 2rem;
  margin: 3.5rem 0 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-cta-box h3 {
  color: #ffffff !important;
  font-size: 1.6rem !important;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}

.article-cta-box p {
  color: #94a3b8 !important;
  font-size: 1.05rem !important;
  margin-bottom: 1.5rem !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.article-cta-box .btn-primary {
  display: inline-block;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease;
}

.article-cta-box .btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* Author Bio Card */
.author-bio-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  padding: 1.75rem;
  margin: 3.5rem 0 2rem;
}

.author-bio-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 2px;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.author-bio-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.author-bio-description {
  font-size: 0.95rem !important;
  color: #475569 !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.5 !important;
}

.author-bio-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
}

.author-bio-links a:hover {
  text-decoration: underline;
}

.blog-hero-author .author-info {
  display: flex;
  flex-direction: column;
}

.blog-hero-author .author-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.category-badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-meta-readtime {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.continue-meta {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.5rem;
}

/* Continue Reading Section (Matching Image 5) */
.blog-continue-section {
  padding-top: 3.5rem;
  border-top: 1px solid #e8e8ec;
}


.continue-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #000000;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.continue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  width: 100%;
}

@media (max-width: 992px) {
  .continue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.continue-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.continue-card:hover {
  transform: translateY(-3px);
}

.continue-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
  background: #f4f4f5;
  margin-bottom: 1rem;
}

.continue-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform 0.5s ease;
}

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

.continue-category {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: #71717a;
  margin-bottom: 0.35rem;
  font-weight: 400;
}

.continue-title {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.continue-date {
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ==========================================================================
   ABOUT PAGE STYLES (MATCHING DESIGN REFERENCE)
   ========================================================================== */

.about-page-wrapper {
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden;
}

/* 1. HERO SECTION */
.about-hero-section {
  padding: 3.5rem 0 4rem;
}

.about-hero-headline {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #000000;
  max-width: 820px;
  margin-bottom: 3.5rem;
}

.about-gallery-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.75rem;
  cursor: grab;
}

.about-gallery-wrapper::-webkit-scrollbar {
  display: none;
}

.about-gallery-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.about-gallery-card {
  flex: 0 0 520px;
  aspect-ratio: 2848 / 1552;
  height: auto;
  border-radius: 2px;
  overflow: hidden;
  background-color: #f4f4f5;
  user-select: none;
}

@media (max-width: 768px) {
  .about-gallery-card {
    flex: 0 0 380px;
  }
}

@media (max-width: 480px) {
  .about-gallery-card {
    flex: 0 0 300px;
  }
}

.about-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 2px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

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

/* 2. OUR ETHOS SECTION */
.ethos-section {
  padding: 5rem 0 6rem;
}

.about-section-heading {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #000000;
  margin-bottom: 2.5rem;
}

.ethos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.ethos-card {
  background-color: #f7f7f5;
  border-radius: 2px;
  padding: 3.25rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.ethos-card:hover {
  transform: translateY(-2px);
}

.ethos-card-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.35;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.ethos-card-text {
  font-family: var(--font-main), "BDO Grotesk", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 400;
  color: #52525b;
}

@media (max-width: 768px) {
  .ethos-card-title {
    font-size: 1.25rem;
    line-height: 1.35;
  }
  .ethos-card-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.ethos-stat-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.ethos-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 6.2vw, 5.2rem);
  font-weight: 400;
  color: #000000;
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.ethos-stat-label {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: #000000;
  font-weight: 400;
  line-height: 1.35;
  max-width: 175px;
}

/* 3. THE STORY SO FAR... SECTION */
.story-section {
  padding: 5rem 0 6rem;
}

.story-header {
  margin-bottom: 3.5rem;
}

.story-header .about-section-heading {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.story-subtitle {
  font-family: var(--font-main), "BDO Grotesk", Arial, sans-serif;
  font-size: 1.05rem;
  color: #52525b;
  max-width: 440px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.timeline-container {
  position: relative;
}

.timeline-track-wrapper {
  overflow-x: auto;
  width: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.timeline-track-wrapper::-webkit-scrollbar {
  display: none;
}

.timeline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 6rem) / 3);
  gap: 3rem;
  width: 100%;
}

@media (max-width: 992px) {
  .timeline-track {
    grid-auto-columns: calc((100% - 2rem) / 2);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .timeline-track {
    grid-auto-columns: 100%;
    gap: 1.5rem;
  }
}

.timeline-card {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e4e4e4;
  padding-top: 2.25rem;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 5vw, 4.75rem);
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.04em;
  margin-bottom: 2.25rem;
  line-height: 1;
}

.timeline-card-title {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.timeline-card-desc {
  font-family: var(--font-main);
  font-size: 0.935rem;
  color: #666666;
  line-height: 1.6;
}

.timeline-nav-controls {
  display: flex;
  gap: 0.6rem;
  margin-top: 3.5rem;
}

.timeline-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 0 !important;
  background-color: transparent;
  border: 1px solid #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #18181b;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.timeline-nav-btn:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-1px);
}

.timeline-nav-btn:active {
  transform: translateY(0);
}

/* 4. SELECTED CLIENTS SECTION */
.clients-section {
  padding: 5rem 0 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.clients-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

@media (max-width: 992px) {
  .clients-layout {
    grid-template-columns: 1fr;
  }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.client-card {
  background-color: #f7f7f5;
  border-radius: 2px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  transition: transform 0.25s ease, background-color 0.25s ease;
  text-align: center;
}

.client-card:hover {
  background-color: #f0f0ed;
  transform: translateY(-2px);
}

.client-logo-content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #000000;
}

.client-brand-name {
  color: #111111;
  font-family: var(--font-main);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-stacked-name {
  display: flex;
  flex-direction: column;
  color: #000000;
  font-family: var(--font-main);
}

.client-stacked-serif {
  display: flex;
  flex-direction: column;
  color: #000000;
  font-family: Georgia, serif;
  line-height: 1.1;
}

/* 5. GLOBAL MARKETS BANNER */
.global-banner-section {
  padding: 2rem 0 7rem;
}

.global-markets-banner {
  background: #09090b url('../images/forcta.png') center/cover no-repeat;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  padding: 6.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  text-align: center;
  color: #ffffff;
}

.global-markets-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.72) 0%, rgba(9, 9, 11, 0.85) 100%);
  z-index: 1;
}

.global-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
}

.global-map-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dot-pulse {
  animation: dotPulseAnim 3s infinite ease-in-out;
}

@keyframes dotPulseAnim {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.global-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.global-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

.btn-global-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  background-color: #27272a;
  color: #ffffff;
  border-radius: 0 !important;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-global-touch:hover {
  background-color: #3f3f46;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   PRICING PAGE STYLES (MATCHING DESIGN REFERENCE & 3-CARD LAYOUT)
   ========================================================================== */
.pricing-hero-section {
  padding: 5rem 0 6rem;
  background-color: #ffffff;
}

.pricing-hero-header {
  max-width: 920px;
  margin: 0 auto 4.5rem;
  text-align: left;
}

.pricing-main-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.pricing-sub-headline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #52525b;
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Billing Toggle Switch */
.billing-toggle-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.billing-toggle-pill {
  display: inline-flex;
  align-items: center;
  background-color: #f4f4f5;
  padding: 4px;
  border-radius: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.billing-toggle-btn {
  border: none;
  background: transparent;
  color: #52525b;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0 !important;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.billing-toggle-btn.active {
  background-color: #000000;
  color: #ffffff;
  border-radius: 0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.discount-badge {
  background-color: #ef4924;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.75rem 2.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Light Cards (Card 1 & 2) */
.card-light {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.card-light:hover {
  border-color: #000000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.card-featured {
  border: 2px solid #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Dark Card (3rd Custom Card) */
.card-custom-dark {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #18181b;
  position: relative;
  overflow: hidden;
}

.card-custom-dark::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(239, 73, 36, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.card-custom-dark:hover {
  border-color: #3f3f46;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

/* Badges */
.plan-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  text-transform: uppercase;
}

.plan-badge-popular {
  background-color: #000000;
  color: #ffffff;
}

.plan-badge-custom {
  background-color: #ef4924;
  color: #ffffff;
}

/* Header & Typography */
.plan-card-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.card-light .plan-name {
  color: #000000;
}

.card-custom-dark .plan-name {
  color: #ffffff;
}

.plan-tagline {
  font-size: 0.925rem;
  line-height: 1.5;
}

.card-light .plan-tagline {
  color: #52525b;
}

.card-custom-dark .plan-tagline {
  color: #a1a1aa;
}

/* Price Section */
.plan-price-wrapper {
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.card-custom-dark .plan-price-wrapper {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.currency-symbol {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.card-light .currency-symbol {
  color: #000000;
}

.price-val {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #000000;
}

.custom-price-label {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
}

.custom-price-plus {
  color: #ef4924;
}

.price-period {
  font-size: 0.9rem;
  margin-left: 0.25rem;
}

.card-light .price-period {
  color: #71717a;
}

.card-custom-dark .price-period {
  color: #a1a1aa;
}

.price-billing-subtext {
  font-size: 0.825rem;
  margin-top: 0.4rem;
}

.card-light .price-billing-subtext {
  color: #71717a;
}

.card-custom-dark .price-billing-subtext {
  color: #a1a1aa;
}

/* CTAs */
.plan-cta-block {
  margin-bottom: 2.5rem;
}

.plan-cta-block .btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-size: 0.95rem;
}

.btn-outline-plan {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000 !important;
}

.btn-outline-plan:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-custom-plan {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #ffffff !important;
  font-weight: 600;
}

.btn-custom-plan:hover {
  background-color: #ef4924;
  color: #ffffff;
  border-color: #ef4924 !important;
}

/* Features List */
.plan-features-block {
  flex-grow: 1;
}

.features-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.card-light .features-label {
  color: #a1a1aa;
}

.card-custom-dark .features-label {
  color: #71717a;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  line-height: 1.45;
}

.card-light .features-list li {
  color: #27272a;
}

.card-custom-dark .features-list li {
  color: #e4e4e7;
}

.feature-check-icon {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.card-light .feature-check-icon {
  color: #000000;
}

.card-custom-dark .feature-check-icon {
  color: #ef4924;
}

/* Plan Comparison Table Section */
.pricing-comparison-section {
  padding: 6rem 0;
  background-color: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.comparison-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.75rem;
}

.comparison-subtitle {
  font-size: 1.05rem;
  color: #52525b;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-table th {
  background-color: #f4f4f5;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #000000;
}

.comparison-table th.feature-col {
  width: 32%;
}

.comparison-table th.highlight-col,
.comparison-table td.highlight-col {
  background-color: rgba(239, 73, 36, 0.03);
  font-weight: 600;
}

.comparison-table th.dark-col,
.comparison-table td.dark-col {
  background-color: #09090b;
  color: #ffffff;
}

.comparison-table td.feature-name {
  font-weight: 500;
  color: #000000;
}

/* Pricing Bottom CTA Banner */
.pricing-cta-banner {
  padding: 6rem 0;
  background-color: #ffffff;
}

.pricing-cta-card {
  background-color: #000000;
  color: #ffffff;
  padding: 4.5rem 3rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pricing-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(239, 73, 36, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.pricing-cta-desc {
  font-size: 1.1rem;
  color: #a1a1aa;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.pricing-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pricing-hero-section {
    padding: 3.5rem 0 4rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-cta-card {
    padding: 3rem 1.5rem;
  }

  .pricing-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .pricing-cta-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   INDIVIDUAL PRICING PLAN PAGE STYLES (MATCHING DESIGN SPEC)
   ========================================================================== */
.individual-plan-wrapper {
  padding: 5rem 0 6rem;
  background-color: #ffffff;
  color: #000000;
}

.plan-detail-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Top Section */
.plan-hero-section {
  padding-bottom: 1rem;
}

.plan-hero-title {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.plan-hero-subtitle {
  font-family: var(--font-main), "BDO Grotesk", Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1.55;
  color: #52525b;
  max-width: 540px;
  margin-bottom: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.plan-hero-action {
  margin-bottom: 1rem;
}

.btn-purchase-plan {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 0 !important;
  text-decoration: none;
  transition: all var(--tr-fast);
  border: 1px solid #000000;
}

.btn-purchase-plan:hover {
  background-color: #ef4924;
  border-color: #ef4924;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 73, 36, 0.35);
}

/* Horizontal Dividers */
.plan-section-divider {
  border: 0;
  border-top: 1px solid #eaeaea;
  margin: 2.75rem 0;
  width: 100%;
}

/* Two-Column Section Rows (Price, Description, Features) */
.plan-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.plan-row-left {
  flex: 0 0 35%;
  max-width: 35%;
}

.plan-row-label {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
}

.plan-row-right {
  flex: 0 0 65%;
  max-width: 65%;
}

/* Price Section */
.plan-price-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.plan-price-amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
}

.plan-price-period {
  font-size: 1rem;
  color: #888888;
  font-weight: 400;
}

/* Description Section */
.plan-description-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: #222222;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.plan-description-text p:last-child {
  margin-bottom: 0;
}

/* Features Section */
.plan-includes-header {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.25rem;
  display: block;
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features-list li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 0.5rem;
}

/* Bottom Questions Banner Card */
.plan-questions-banner {
  background-color: #f7f7f5;
  border-radius: 2px;
  padding: 3.5rem;
  margin-top: 5rem;
}

.plan-questions-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.plan-questions-text {
  flex: 1;
}

.plan-questions-eyebrow {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: #777777;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.plan-questions-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: #000000;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.btn-questions-contact {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 0 !important;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: 1px solid #000000;
}

.btn-questions-contact:hover {
  background-color: #222222;
  color: #ffffff;
  transform: translateY(-1px);
}

.plan-questions-media {
  flex: 0 0 400px;
  max-width: 400px;
}

.plan-questions-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* Main Pricing Page Styles */
.pricing-page-wrapper {
  padding: 5rem 0;
  background-color: #ffffff;
}

.pricing-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.pricing-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: #000000;
  line-height: 1.15;
  margin: 1.25rem 0 1rem;
}

.pricing-main-subtitle {
  font-size: 1.15rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Billing Toggle Switch */
.billing-toggle-container {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #f4f4f5;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333333;
}

.discount-badge {
  background-color: #ef4924;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 4px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
}

input:checked+.slider {
  background-color: #000000;
}

input:checked+.slider:before {
  transform: translateX(22px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 2px;
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured-card {
  border: 2px solid #000000;
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #000000;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.pricing-card-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.pricing-card-tagline {
  font-size: 0.95rem;
  color: #666666;
  min-height: 48px;
  margin-bottom: 1.5rem;
}

.pricing-card-price-row {
  margin-bottom: 1.75rem;
}

.price-monthly-val {
  display: flex;
  align-items: baseline;
}

.currency-symbol {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
}

.amount-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.95rem;
  color: #777777;
  margin-left: 6px;
}

.custom-text {
  font-size: 2.25rem;
  font-weight: 700;
  color: #000000;
}

.pricing-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-explore-plan {
  display: block;
  text-align: center;
  color: #000000;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.65rem;
  border-radius: 0 !important;
  background: transparent;
  border: 1px solid #000000;
  transition: all 0.2s ease;
}

.btn-explore-plan:hover {
  background: #000000;
  color: #ffffff;
}

.btn-card-cta {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 0 !important;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-card-cta.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.btn-card-cta.btn-primary:hover {
  background-color: #ef4924;
  border-color: #ef4924;
  color: #ffffff;
}

.btn-card-cta.btn-secondary {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.btn-card-cta.btn-secondary:hover {
  border-color: #000000;
  background-color: #000000;
  color: #ffffff;
}

.pricing-card-divider {
  border: 0;
  border-top: 1px solid #f4f4f5;
  margin: 1rem 0 1.5rem;
}

.features-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 0.75rem;
}

.check-icon {
  color: #10b981;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .plan-questions-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-questions-media {
    flex: 100%;
    max-width: 100%;
    width: 100%;
  }

  .plan-questions-img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .individual-plan-wrapper {
    padding: 3rem 0 4rem;
  }

  .plan-detail-row {
    flex-direction: column;
    gap: 1.25rem;
  }

  .plan-row-left,
  .plan-row-right {
    flex: 100%;
    max-width: 100%;
  }

  .plan-section-divider {
    margin: 2rem 0;
  }

  .plan-questions-banner {
    padding: 2rem 1.5rem;
    margin-top: 3.5rem;
  }
}

/* ==========================================================================
   PRICING PAGE REDESIGN (EXACT USER REFERENCE SPECIFICATION)
   ========================================================================== */
.pricing-section {
  padding: 4.5rem 0 6rem;
  background-color: #ffffff;
  min-height: 80vh;
}

.pricing-hero {
  margin-bottom: 3.5rem;
}

.pricing-headline {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 680px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0px;
}

.toggle-btn {
  padding: 0.45rem 1.15rem;
  font-family: var(--font-main), sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0 !important;
  transition: all 0.2s ease;
}

.toggle-btn.btn-white {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

.toggle-btn.btn-black {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2px;
  padding: 2.25rem 2rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card-light {
  background-color: #ffffff;
  border: 1px solid #e4e4e7;
  color: #000000;
}

.pricing-card-dark {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.card-head {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.card-title {
  font-family: var(--font-main), sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.pricing-card-light .card-title {
  color: #000000;
}

.pricing-card-dark .card-title {
  color: #ffffff;
}

.card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-val {
  font-family: var(--font-main), sans-serif;
  font-size: 2.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card-light .price-val {
  color: #000000;
}

.pricing-card-dark .price-val {
  color: #ffffff;
}

.price-unit {
  font-size: 0.875rem;
  font-weight: 400;
}

.pricing-card-light .price-unit {
  color: #71717a;
}

.pricing-card-dark .price-unit {
  color: #a1a1aa;
}

.card-divider {
  height: 1px;
  width: 100%;
  margin: 1.75rem 0 2rem;
}

.pricing-card-light .card-divider {
  background-color: #e5e5e5;
}

.pricing-card-dark .card-divider {
  background-color: #27272a;
}

.card-body-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-tagline {
  font-size: 0.9375rem;
  line-height: 1.45;
  margin-bottom: 2rem;
}

.pricing-card-light .card-tagline {
  color: #000000;
}

.pricing-card-dark .card-tagline {
  color: #ffffff;
}

.card-includes-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pricing-card-light .card-includes-title {
  color: #000000;
}

.pricing-card-dark .card-includes-title {
  color: #ffffff;
}

.card-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card-features-list li {
  font-size: 0.875rem;
  line-height: 1.4;
}

.pricing-card-light .card-features-list li {
  color: #52525b;
}

.pricing-card-dark .card-features-list li {
  color: #d4d4d8;
}

.card-footer-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.btn-explore {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  text-align: center;
  font-family: var(--font-main), sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0 !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.pricing-card-light .btn-explore {
  background-color: #000000;
  color: #ffffff;
  border: none;
}

.pricing-card-light .btn-explore:hover {
  opacity: 0.88;
  color: #ffffff;
}

.pricing-card-dark .btn-explore {
  background-color: #262626;
  color: #ffffff;
  border: none;
}

.pricing-card-dark .btn-explore:hover {
  background-color: #333333;
  color: #ffffff;
}

.card-disclaimer {
  font-size: 0.775rem;
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.pricing-card-light .card-disclaimer {
  color: #71717a;
}

.pricing-card-dark .card-disclaimer {
  color: #71717a;
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================
   PRICING ACTION BUTTONS & QUOTE MODAL STYLES
   ========================================== */

.price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  margin-right: 0.25rem;
}

.pricing-card-light .price-currency {
  color: #18181b;
}

.pricing-card-dark .price-currency {
  color: #f4f4f5;
}

.card-badge-pill {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  text-transform: uppercase;
}

.feature-check-icon {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

.card-features-list li {
  display: flex;
  align-items: flex-start;
}

/* Dual Buttons Container */
.card-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  margin-bottom: 0.75rem;
}

/* WhatsApp Button Styles (Only on Individual Plan Page) */
.btn-plan-whatsapp,
.btn-banner-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem 1.2rem;
  background-color: #000000;
  color: #ffffff !important;
  font-family: var(--font-main), sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0 !important;
  text-decoration: none;
  border: 1px solid #000000;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-plan-whatsapp:hover,
.btn-banner-whatsapp:hover {
  background-color: #15803d !important; /* Darker shade of green on hover */
  border-color: #15803d !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Quote Button Styles */
.btn-pricing-quote,
.btn-plan-quote,
.btn-banner-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem 1.2rem;
  background-color: #000000;
  color: #ffffff !important;
  font-family: var(--font-main), sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0 !important;
  text-decoration: none;
  border: 1px solid #000000;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-pricing-quote:hover,
.btn-plan-quote:hover,
.btn-banner-quote:hover {
  background-color: #ef4924;
  border-color: #ef4924;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 73, 36, 0.35);
}

.pricing-card-dark .btn-pricing-quote {
  background-color: #ffffff;
  color: #000000 !important;
  border: 1px solid #ffffff;
  border-radius: 0 !important;
}

.pricing-card-dark .btn-pricing-quote:hover {
  background-color: #ef4924;
  border-color: #ef4924;
  color: #ffffff !important;
}

/* Individual Plan Page Styling Updates */
.plan-title-badge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.plan-badge-pill {
  background-color: #000000;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.plan-hero-action {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
}

.plan-hero-action .btn-plan-whatsapp,
.plan-hero-action .btn-plan-quote {
  width: auto;
  min-width: 200px;
}

.plan-banner-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.plan-banner-actions .btn-banner-whatsapp,
.plan-banner-actions .btn-banner-quote {
  width: auto;
  padding: 0.75rem 1.5rem;
}

.plan-price-currency {
  font-size: 1.75rem;
  font-weight: 700;
  margin-right: 0.35rem;
  color: #000;
}

/* ==========================================
   QUOTE REQUEST MODAL COMPONENT STYLES (WHITE THEME & 2PX RADIUS)
   ========================================== */

.quote-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease-out forwards;
}

.quote-modal-dialog {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 2px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.quote-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  color: #18181b;
  width: 34px;
  height: 34px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.quote-modal-close:hover {
  background: #18181b;
  border-color: #18181b;
  color: #ffffff;
}

.quote-modal-body {
  padding: 2.25rem;
}

.quote-modal-header {
  margin-bottom: 1.75rem;
}

.quote-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #18181b;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quote-modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #18181b;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.quote-modal-subtitle {
  font-size: 0.9375rem;
  color: #71717a;
  line-height: 1.5;
  margin: 0;
}

.quote-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.form-field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #18181b;
}

.required-star {
  color: #ef4444;
}

.form-field-input {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #d4d4d8;
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: var(--font-main), sans-serif;
  font-size: 0.9375rem;
  color: #18181b;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field-input:focus {
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.form-field-input::placeholder {
  color: #a1a1aa;
}

.select-wrapper {
  position: relative;
}

.select-input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  background-color: #ffffff;
  color: #18181b;
}

.select-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #71717a;
  pointer-events: none;
  font-size: 0.8rem;
}

.textarea-input {
  resize: vertical;
  min-height: 100px;
}

.form-submit-row {
  margin-top: 0.5rem;
}

.btn-modal-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.5rem;
  background-color: #000000;
  color: #ffffff;
  font-family: var(--font-main), sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #000000;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.btn-modal-submit:hover {
  background-color: #ef4924;
  border-color: #ef4924;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 73, 36, 0.35);
}

/* Success State in Modal */
.quote-modal-success {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.success-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-size: 2rem;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.5rem;
}

.success-desc {
  font-size: 0.95rem;
  color: #52525b;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.btn-success-close {
  padding: 0.75rem 2rem;
  background-color: #000000;
  color: #ffffff;
  font-weight: 500;
  border: 1px solid #000000;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.btn-success-close:hover {
  background-color: #ef4924;
  border-color: #ef4924;
  color: #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .form-grid-row {
    grid-template-columns: 1fr;
  }
  .plan-hero-action,
  .plan-banner-actions {
    flex-direction: column;
  }
  .plan-hero-action .btn-plan-whatsapp,
  .plan-hero-action .btn-plan-quote {
    width: 100%;
  }
}

/* ==========================================
   MOBILE FULL-WIDTH STRETCH FOR SWITCHES
   (PRICING BILLING TOGGLE & BLOG FILTER)
   ========================================== */
@media (max-width: 768px) {
  /* Pricing Page Billing Toggle */
  .billing-toggle,
  .billing-toggle-container {
    display: flex !important;
    width: 100% !important;
  }

  .billing-toggle-pill {
    display: flex !important;
    width: 100% !important;
  }

  .toggle-btn,
  .billing-toggle-btn {
    flex: 1 !important;
    width: 50% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Blog Page Category Filter Bar */
  .blog-filter-container {
    width: 100% !important;
  }

  .blog-filter-pill-bar {
    display: flex !important;
    width: 100% !important;
  }

  .blog-filter-pill {
    flex: 1 !important;
    text-align: center !important;
    justify-content: center !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

/* ==========================================
   UPDATED ABOUT PAGE ENHANCEMENTS
   ========================================== */
.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  color: #18181b;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  background-color: #f4f4f2;
  transition: all 0.25s ease;
}

.btn-secondary-link:hover {
  background-color: #e4e4e0;
  color: #000000;
  transform: translateX(2px);
}

.about-section-subheading {
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: #52525b;
  margin-top: -1.75rem;
  margin-bottom: 2.5rem;
}

/* Who We Are */
.who-we-are-section {
  padding: 4.5rem 0 5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.who-we-are-content {
  max-width: 820px;
}

.who-we-are-text {
  font-family: var(--font-main);
  font-size: 1.125rem;
  line-height: 1.7;
  color: #3f3f46;
  margin-bottom: 1.5rem;
}

.who-we-are-highlight {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 2rem;
  padding-left: 1.25rem;
  border-left: 3px solid #000000;
}

.ethos-card-subtext {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #52525b;
  line-height: 1.6;
  margin-top: 0.85rem;
}

/* What We Do */
.what-we-do-section {
  padding: 5rem 0 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

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

.what-we-do-card {
  background-color: #f7f7f5;
  border-radius: 2px;
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.what-we-do-card:hover {
  transform: translateY(-2px);
  background-color: #f2f2ef;
}

.what-we-do-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #000000;
  margin-bottom: 0.85rem;
}

.what-we-do-desc {
  font-family: var(--font-main);
  font-size: 1rem;
  color: #52525b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.what-we-do-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.what-we-do-link:hover {
  gap: 0.75rem;
}

/* Where We Work */
.where-we-work-section {
  padding: 5rem 0 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.where-we-work-lead {
  font-family: var(--font-main);
  font-size: 1.15rem;
  line-height: 1.7;
  color: #27272a;
  max-width: 860px;
  margin-bottom: 3rem;
}

.where-we-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.where-we-work-card {
  background-color: #f7f7f5;
  border-radius: 2px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.where-we-work-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 0.85rem;
}

.where-we-work-card-desc {
  font-family: var(--font-main);
  font-size: 1rem;
  color: #52525b;
  line-height: 1.6;
}

.where-we-work-footnote {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #71717a;
  font-style: italic;
}

/* How We Work */
.how-we-work-section {
  padding: 6rem 0 7rem;
  background-color: #ffffff;
}

.how-we-work-header {
  margin-bottom: 4rem;
}

.how-we-work-heading {
  font-family: var(--font-heading), "BDO Grotesk", Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.how-we-work-subheading {
  font-family: var(--font-main), "BDO Grotesk", Arial, sans-serif;
  font-size: 1.05rem;
  color: #52525b;
  line-height: 1.5;
  max-width: 440px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.how-we-work-list {
  display: flex;
  flex-direction: column;
}

.how-we-work-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.how-we-work-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.how-we-work-phase {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
}

.how-we-work-duration {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #71717a;
  font-weight: 400;
  line-height: 1.4;
}

.how-we-work-content {
  max-width: 720px;
}

.how-we-work-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.how-we-work-desc {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: #52525b;
  line-height: 1.65;
  font-weight: 400;
}

@media (max-width: 868px) {
  .how-we-work-section {
    padding: 4rem 0 5rem;
  }

  .how-we-work-header {
    margin-bottom: 3rem;
  }

  .how-we-work-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2.5rem 0;
  }

  .how-we-work-title {
    margin-bottom: 0.85rem;
  }
}

/* Softmaster Advantage - Modern Dark Quote Card Design */
.softmaster-advantage-section {
  padding: 5rem 0 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.softmaster-card {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #1c1c1e;
  border-radius: 2px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: stretch;
}

.softmaster-image-wrapper {
  background-color: #141416;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  width: 100%;
  min-height: 380px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

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

.softmaster-content-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.softmaster-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.softmaster-quote {
  font-family: var(--font-main);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #d4d4d8;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.softmaster-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.softmaster-author-name {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  color: #e4e4e7;
}

.softmaster-author-role {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 400;
  color: #8e8e93;
}

@media (max-width: 992px) {
  .softmaster-card {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

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

  .softmaster-image-wrapper {
    min-height: 240px;
    height: 240px;
  }

  .softmaster-title {
    margin-bottom: 1.5rem;
  }

  .softmaster-quote {
    margin-bottom: 1.75rem;
  }
}

/* About FAQ */
.about-faq-section {
  padding: 5rem 0 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-faq-container {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Closing CTA */
.about-closing-cta-section {
  padding: 5rem 0 7rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-cta-card {
  background-color: #f7f7f5;
  border-radius: 2px;
  padding: 4.5rem 3.5rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .about-cta-card {
    padding: 3rem 1.75rem;
  }
}

.about-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: #000000;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.about-cta-text {
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: #52525b;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   LEGAL PAGES STYLING (Terms of Service & Privacy Policy - Minimalist Split Layout)
   ========================================================================== */
.legal-page-section {
  padding: 4rem 0 8rem;
  background-color: #ffffff;
  min-height: 85vh;
}

.legal-page-container {
  max-width: 1200px;
  margin: 0 auto;
}

.legal-hero-header {
  margin-bottom: 4rem;
}

.legal-hero-title {
  font-family: var(--font-heading, "BDO Grotesk", Arial, sans-serif);
  font-size: clamp(3.2rem, 5.5vw, 4.75rem);
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

.legal-hero-updated {
  font-family: var(--font-heading, "BDO Grotesk", Arial, sans-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 400;
  color: #71717a;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* 2-Column Split Grid */
.legal-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: start;
  position: relative;
}

/* Left Sticky Sidebar (Fixed on Scroll) */
.legal-sidebar-sticky {
  position: sticky;
  top: 100px;
  z-index: 20;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.legal-sidebar-sticky::-webkit-scrollbar {
  display: none;
}

.legal-toc-card {
  background-color: #f7f6f2; /* Soft warm/neutral beige tone */
  border-radius: 12px;
  padding: 2.25rem 1.75rem;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.legal-toc-link {
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.35;
  transition: color var(--tr-fast), transform var(--tr-fast);
  display: block;
}

.legal-toc-link:hover {
  color: var(--accent-brand, #ef4924);
}

.legal-toc-link.active {
  color: var(--accent-brand, #ef4924);
  font-weight: 600;
}

/* Right Content Column (Scrolls Freely) */
.legal-content-body {
  min-width: 0;
}

.legal-lead-paragraph {
  font-size: clamp(1.25rem, 1.8vw, 1.45rem);
  font-weight: 450;
  color: #111111;
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 3.5rem;
}

.legal-content-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 110px;
}

.legal-section-heading {
  font-family: var(--font-heading, "BDO Grotesk", Arial, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.legal-section-text p {
  font-size: 1.025rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1.25rem;
}

.legal-section-text p:last-child {
  margin-bottom: 0;
}

.legal-section-text strong {
  color: #111111;
  font-weight: 600;
}

.legal-section-text a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--tr-fast);
}

.legal-section-text a:hover {
  color: var(--accent-brand, #ef4924);
}

.legal-list {
  margin: 1.25rem 0 1.5rem 1.5rem;
  padding: 0;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-list li {
  font-size: 1.025rem;
  line-height: 1.7;
  color: #374151;
}

.legal-contact-details {
  background: #f7f6f2;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
}

.legal-contact-details p {
  margin-bottom: 0.5rem !important;
  font-size: 0.95rem;
  color: #374151;
}

.legal-contact-details p:last-child {
  margin-bottom: 0 !important;
}

/* Responsive Layout */
@media (max-width: 991px) {
  .legal-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .legal-sidebar-sticky {
    position: relative;
    top: 0;
    max-height: none;
  }

  .legal-toc-card {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .legal-page-section {
    padding: 2.5rem 0 5rem;
  }

  .legal-hero-header {
    margin-bottom: 2.5rem;
  }

  .legal-lead-paragraph {
    margin-bottom: 2.5rem;
  }

  .legal-content-section {
    margin-bottom: 2.5rem;
  }
}