/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-color: #fdfaf5;
  --text-primary: #111111;
  --text-body: #3f3f3f;
  --accent: #c15f3c; /* Burnt Terracotta */
  --white: #ffffff;
  --secondary: #0a66c2; /* Blue */
  --secondary-hover: #0855a1;
  --accent-light: rgba(193, 95, 60, 0.08);
  
  /* Borders */
  --border-default: rgba(17, 17, 17, 0.08);
  --border-hover: rgba(17, 17, 17, 0.16);
  --border-light: rgba(17, 17, 17, 0.04);
  
  /* Border Radius */
  --radius-card: 16px;
  --radius-button: 9999px;
  --radius-modal: 24px;
  
  /* Shadows */
  --shadow-default: 0 4px 20px rgba(17, 17, 17, 0.02);
  --shadow-hover: 0 12px 40px rgba(17, 17, 17, 0.04);
  --shadow-nav: 0 10px 30px rgba(17, 17, 17, 0.03);
  
  /* Typography */
  --font-headings: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-color);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  letter-spacing: -0.01em; /* Plus Jakarta Sans body tracking */
}

/* Background elements */
.bg-noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.bg-gradient-radial {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

.bg-gradient-top-left {
  background: radial-gradient(circle at 10% 10%, rgba(193, 95, 60, 0.05) 0%, transparent 60%);
}

.bg-gradient-bottom-right {
  background: radial-gradient(circle at 90% 90%, rgba(193, 95, 60, 0.05) 0%, transparent 60%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.05em; /* Inter headings tracking */
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-default);
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--white);
  /* Inset highlight effect */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), var(--shadow-default);
}

.btn-primary:hover {
  background-color: #222222;
  transform: translateY(-2px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 8px 24px rgba(17, 17, 17, 0.08);
}

.btn-primary:active {
  transform: translateY(0) scale(1);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), var(--shadow-default);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 8px 24px rgba(10, 102, 194, 0.15);
}

.btn-white-pill {
  background-color: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}

.btn-white-pill:hover {
  background-color: var(--bg-color);
  transform: translateY(-2px) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}

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

.btn-outline-blue:hover {
  background-color: rgba(10, 102, 194, 0.05);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.08);
}

.btn:active {
  transform: translateY(1px) scale(0.97) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.btn-pill-sm {
  font-size: 13px;
  padding: 8px 20px;
}

.btn-full-width {
  width: 100%;
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.card-base {
  background-color: var(--white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-default);
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   SECTION 1: NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1120px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-button);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.01), inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.navbar-scrolled {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 32px 0 rgba(17, 17, 17, 0.04), inset 0 1px 1px 0 rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.75);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
}

.nav-logo .dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--radius-button);
  transition: color var(--transition-smooth), background-color var(--transition-smooth), transform var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

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

/* Navbar active state */
.nav-link.active {
  background-color: rgba(255, 255, 255, 0.55);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.015), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.nav-actions .btn {
  padding: 8px 20px;
  font-size: 14px;
}

/* ==========================================================================
   SECTION 2: HERO
   ========================================================================== */
.hero-section {
  padding-top: 180px;
  padding-bottom: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  max-width: 700px;
  margin: 0 auto;
}

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

/* Availability Badge */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  border: 1px solid var(--border-default);
  padding: 6px 14px;
  border-radius: var(--radius-button);
  margin-bottom: 24px;
  box-shadow: var(--shadow-default);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981; /* Green */
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.availability-text {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 500;
  color: #555555;
}

/* Hero Typography */
.hero-headline {
  font-size: 56px;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hero-image-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.hero-headshot {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-card); /* matches card curved corners (16px) */
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-default);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.hero-headshot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

/* ==========================================================================
   SECTION 3: SELECTED WORK
   ========================================================================== */
.work-section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 48px;
  text-align: left;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-subtitle-terracotta {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: none;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.work-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px 0 rgba(17, 17, 17, 0.015), inset 0 1px 1px 0 rgba(255, 255, 255, 0.5);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px 0 rgba(17, 17, 17, 0.045), inset 0 1px 1px 0 rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}

.work-card-content {
  margin-bottom: 24px;
}

.work-client-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.work-role-caps {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 16px;
}

.work-description {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 4: SERVICES
   ========================================================================== */
.services-section {
  padding: 100px 0;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-body);
  margin-top: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px 0 rgba(17, 17, 17, 0.015), inset 0 1px 1px 0 rgba(255, 255, 255, 0.5);
  padding: 48px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px 0 rgba(17, 17, 17, 0.045), inset 0 1px 1px 0 rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon-box svg {
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-icon-box svg {
  transform: scale(1.15) rotate(-3deg);
}

.service-bullet-icon {
  transition: transform var(--transition-smooth), color var(--transition-smooth);
}

.service-card:hover .service-bullet-icon {
  transform: scale(1.2);
  color: var(--accent);
}

.service-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-bullets li {
  font-size: 14px;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-bullet-icon {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.service-price-note {
  margin-top: auto;
  font-size: 12px;
  font-style: italic;
  color: #555555;
}

/* ==========================================================================
   SECTION 5: FULL-WIDTH CTA
   ========================================================================== */
.cta-dark-section {
  background-color: var(--text-primary);
  color: var(--white);
  padding: 100px 0;
}

.cta-dark-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-dark-title {
  color: var(--white);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-dark-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   SECTION 6: TWO-COLUMN POSITIONING
   ========================================================================== */
.positioning-section {
  padding: 120px 0;
}

.positioning-container {
  display: flex;
  gap: 80px;
}

.positioning-left {
  width: 40%;
}

.positioning-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.positioning-headline {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
}

.positioning-right p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
}

.positioning-right .highlight-paragraph {
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================================================
   SECTION 7: FINAL CTA
   ========================================================================== */
.final-cta-section {
  padding: 100px 0 120px 0;
  background-color: var(--bg-color);
}

.final-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 12px;
}

.final-cta-subtitle {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 36px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.final-cta-note {
  font-size: 13px;
  color: #555555;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-color);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  padding: 40px 0;
}

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

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.05em;
}

.footer-logo .dot {
  color: var(--accent);
}

.footer-tagline {
  font-size: 13px;
  color: #555555;
}

.footer-right {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: #555555;
}

.footer-link {
  color: #555555;
  transition: color var(--transition-smooth);
  position: relative;
  text-decoration: none;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width var(--transition-smooth);
}

.footer-link:hover {
  color: var(--accent);
}

.footer-link:hover::after {
  width: 100%;
}

/* ==========================================================================
   MODAL SYSTEM
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px) saturate(190%);
  -webkit-backdrop-filter: blur(30px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-modal);
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 96px rgba(17, 17, 17, 0.08), inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

/* Sticky Modal Header */
.modal-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.modal-client-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-client-subtitle {
  font-size: 14px;
  color: #555555;
}

.modal-close-btn {
  background-color: transparent;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background-color: rgba(17, 17, 17, 0.05);
}

.modal-close-btn svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close-btn:hover svg {
  transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
  padding: 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.modal-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(17, 17, 17, 0.01), inset 0 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.modal-card-badge {
  font-family: var(--font-headings);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: var(--accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-button);
  margin-bottom: 12px;
}

.modal-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.modal-card-text {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.fade-up-section {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-active .fade-up-section {
  opacity: 0;
  transform: translateY(30px);
}

.js-active .fade-up-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Stagger Animations */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--stagger-delay);
}

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

/* Disable body scrolling when modal is open */
body.modal-open {
  overflow: hidden;
}

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 48px;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .positioning-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Navbar adjustments */
  .navbar {
    top: 16px;
    width: calc(100% - 32px);
    padding: 0 16px;
  }
  
  .nav-container {
    padding: 0;
  }
  
  .nav-menu {
    display: none; /* Hide center links on mobile as requested */
  }
  
  /* Hero adjustments */
  .hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
  }
  
  .hero-headline {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }
  
  /* Grids and Columns stack on mobile */
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .positioning-container {
    flex-direction: column;
    gap: 24px;
  }
  
  .positioning-left, .positioning-right {
    width: 100%;
  }
  
  .positioning-headline {
    font-size: 26px;
  }
  
  /* Buttons stacking on final CTA */
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .final-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
  
  /* Modals on mobile */
  .modal-header {
    padding: 16px 24px;
  }
  
  .modal-body {
    padding: 24px;
    gap: 16px;
  }
  
  .modal-client-name {
    font-size: 20px;
  }
  
  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Section padding reductions for tablets and mobile */
  .work-section, .services-section, .positioning-section, .faq-section, .final-cta-section {
    padding: 60px 0;
  }
  
  .modal-title-group {
    padding-right: 16px;
  }
}

/* ==========================================================================
   RESPONSIVENESS (SMALL MOBILE SCREEN OPTIMIZATIONS)
   ========================================================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .nav-logo {
    font-size: 18px;
  }
  
  .nav-actions .btn {
    padding: 6px 14px;
    font-size: 13px;
  }
  
  .hero-headline {
    font-size: 28px;
  }
  
  .work-card {
    padding: 24px 20px;
  }
  
  .service-card {
    padding: 32px 20px;
  }
  
  .faq-trigger {
    padding: 16px 0;
  }
  
  .faq-trigger .faq-question {
    font-size: 16px;
  }
  
  .modal-box {
    max-height: 90vh;
  }
  
  .modal-header {
    padding: 16px 20px;
  }
  
  .modal-body {
    padding: 20px 16px;
  }
  
  .modal-card {
    padding: 20px 16px;
  }
  
  .post-card {
    padding: 16px;
  }
}

/* ==========================================================================
   SECTION 6.5: FAQs
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--border-default);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  transition: var(--transition-smooth);
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-question {
  transition: transform var(--transition-smooth);
}

.faq-trigger:hover .faq-question {
  transform: translateX(6px);
}

.faq-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-trigger:hover .faq-icon {
  transform: scale(1.2);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-trigger[aria-expanded="true"]:hover .faq-icon {
  transform: scale(1.2) rotate(45deg);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  padding: 0 0 24px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   LINKEDIN POST ACCORDION & EXPANDABLE CARDS
   ========================================================================== */
.post-card {
  background-color: var(--white);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  width: 100%;
  transition: border-color var(--transition-smooth);
}

.post-card:hover {
  border-color: var(--border-hover);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.post-user-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.post-user-info p {
  font-size: 12px;
  color: #777777;
}

.post-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--accent);
}

.post-content {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.post-expanded-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card.expanded .post-expanded-content {
  max-height: 2000px;
  margin-top: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.post-expand-btn {
  background: none;
  border: none;
  color: var(--secondary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--transition-smooth);
}

.post-expand-btn svg {
  transition: transform var(--transition-smooth);
}

.post-expand-btn:hover {
  opacity: 0.8;
}

.post-expand-btn:hover svg {
  transform: translateY(2px);
}
