/* ===== CSS VARIABLES - LIGHT THEME ===== */
:root {
  --primary-bg: #ffffff;
  --secondary-bg: #f7f7f7;
  --card-bg: #ffffff;
  --accent-color: #00c047;
  --accent-secondary: #7430f7;
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border-color: #e5e5e5;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --transition: all 0.3s ease;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.text-accent {
  color: var(--accent-color);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--secondary-bg);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
}

.logo {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Glassmorphism pill navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  padding: 6px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 100px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.05);
}

.nav-links a.active {
  background: var(--text-primary);
  color: #fff;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Glassmorphism button style */
.btn-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text-primary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--text-primary);
  color: #fff;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: #eee;
  border-color: #ccc;
}

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

.btn-outline:hover {
  background: var(--secondary-bg);
}

.btn-accent {
  background: var(--accent-color);
  color: #fff;
}

.btn-accent:hover {
  background: #00a83d;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--primary-bg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(to top, black 0%, black 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 0%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  min-height: calc(100vh - 80px);
}

.hero-left {
  position: absolute;
  left: 40px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  will-change: transform, opacity;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 8px 16px;
  width: fit-content;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image img {
  width: auto;
  max-width: 1100px;
  height: auto;
  max-height: calc(100vh - 40px);
  object-fit: contain;
  object-position: bottom;
  margin-bottom: -90px;
  mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.hero-right {
  position: absolute;
  right: 20px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 320px;
  z-index: 2;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  will-change: transform, opacity;
}

.hero-right p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-right .btn {
  background: var(--text-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
}

/* ===== CARDS ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

/* Glassmorphism card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

/* ===== PROJECT CARDS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.project-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.project-card-content {
  padding: 24px;
}

.project-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.project-tag {
  padding: 4px 12px;
  background: var(--secondary-bg);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.project-card h3 {
  margin-bottom: 8px;
}

.project-card p {
  font-size: 0.9375rem;
}

.project-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 500;
}

.project-card-link svg {
  transition: var(--transition);
}

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

/* Featured project card */
.project-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border: 2px solid var(--accent-color);
}

.project-card-featured .project-card-image {
  aspect-ratio: auto;
  height: 100%;
}

.project-card-featured .project-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.project-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 1;
}

@media (max-width: 768px) {
  .project-card-featured {
    grid-column: span 1;
    display: block;
  }

  .project-card-featured .project-card-image {
    aspect-ratio: 16/10;
  }
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ===== FEATURED IN ===== */
.featured-in-section {
  padding: 48px 0;
  border-top: 1px solid var(--border-color);
}

.featured-in-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-in-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.featured-logo {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.featured-logo:hover {
  opacity: 1;
}

.featured-logo img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  object-fit: contain;
  transition: filter 0.2s ease;
}

.featured-logo:hover img {
  filter: grayscale(0%);
}

.featured-logo img[alt="Washington Post"] {
  height: 80px;
}

.featured-logo img[alt="TechCrunch"] {
  height: 82px;
}

.featured-logo img[alt="Tech.co"] {
  height: 84px;
}

.featured-logo img[alt="CNET"] {
  height: 36px;
}

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

.service-card {
  padding: 32px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--secondary-bg);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-color);
}

.service-card h4 {
  margin-bottom: 12px;
}

.service-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #00a83d 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 196, 71, 0.3);
}

.service-card {
  position: relative;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

/* Simplified service cards - no icons, no green */
.service-card-simple {
  position: relative;
  padding: 32px;
  border: 1px solid var(--border-color);
  background: var(--primary-bg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-simple h4 {
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.service-card-simple p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card-simple .service-tags-minimal {
  margin-top: auto;
  margin-bottom: 0;
}

.service-badge-minimal {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--text-primary);
  color: var(--primary-bg);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-tags-minimal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-tags-minimal span {
  padding: 6px 12px;
  background: var(--secondary-bg);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.service-price {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Two column testimonials */
.testimonials-two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

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

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.modal {
  background: var(--primary-bg);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
}

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

.glass-modal {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: var(--secondary-bg);
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-header h3 {
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.9375rem;
}

.estimate-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.estimate-form select {
  width: 100%;
  padding: 16px;
  background: var(--primary-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.estimate-form select:focus {
  outline: none;
  border-color: var(--text-primary);
}

/* ===== PROCESS / HOW IT WORKS ===== */
.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card-new {
  padding: 32px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  background: var(--primary-bg);
  border: 1px solid var(--border-color);
}

.process-number-badge {
  background: var(--text-primary);
  color: var(--primary-bg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0 auto 20px;
}

.process-card-new h4 {
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.process-card-new p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  gap: 12px;
}

/* Legacy timeline styles */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  position: relative;
  border-radius: var(--border-radius);
  margin-bottom: -1px;
}

.process-step .process-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--text-primary) 0%, #333 100%);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-content h4 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.process-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-line {
  position: absolute;
  left: 59px;
  bottom: 0;
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--border-color), transparent);
  transform: translateY(100%);
}

.process-step:last-child .process-line {
  display: none;
}

/* Legacy process grid for backwards compatibility */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-card {
  text-align: center;
  padding: 24px 16px;
}

.process-card .process-number {
  width: 48px;
  height: 48px;
  background: var(--text-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 auto 16px;
}

.process-card h4 {
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.875rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-question svg {
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 24px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--secondary-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text h1 {
  margin-bottom: 24px;
  font-size: 2.5rem;
}

.about-text p {
  margin-bottom: 16px;
}

.about-intro {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* Work Experience */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experience-item {
  display: flex;
  gap: 24px;
  padding: 24px;
}

.experience-date {
  flex-shrink: 0;
  width: 140px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.experience-content h4 {
  margin-bottom: 4px;
}

.experience-content span {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.experience-link {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.experience-link:hover {
  text-decoration: underline;
}

.experience-description {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.featured-experience {
  border-left: 3px solid var(--accent-color);
}

/* About Photo Gallery */
.about-gallery {
  padding: 0 0 80px;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
}

.about-gallery-grid.about-gallery-two-col {
  grid-template-columns: 1fr 1fr;
}

.about-gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-gallery-wide {
  grid-row: span 1;
}

.about-gallery-wide img {
  aspect-ratio: 16 / 9;
}

.about-gallery-item:not(.about-gallery-wide) img {
  aspect-ratio: 4 / 5;
}

.about-gallery-two-col .about-gallery-item img {
  aspect-ratio: 16 / 9;
}

.about-gallery-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.75rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .about-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-gallery-item img {
    aspect-ratio: 16 / 9;
  }

  .about-gallery-item:not(.about-gallery-wide) img {
    aspect-ratio: 16 / 9;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding-top: 140px;
  padding-bottom: 120px;
  background: var(--secondary-bg);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.contact-simple {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-simple h1 {
  margin-bottom: 20px;
}

.contact-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-alt {
  margin-top: 24px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact-alt a {
  color: var(--text-primary);
  text-decoration: underline;
}

.contact-alt a:hover {
  color: var(--accent-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: var(--primary-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text-primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  padding: 32px;
}

.contact-info-card h4 {
  margin-bottom: 12px;
}

/* ===== WORK DETAIL PAGE - ATTIO STYLE ===== */
.work-page {
  min-height: 100vh;
  background: var(--primary-bg);
  padding-top: 100px;
}

/* Main container with border lines */
.work-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.work-bordered {
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

/* Solid line divider */
.solid-line {
  height: 1px;
  background: var(--border-color);
  width: 100%;
}

/* Dashed line divider */
.dashed-line {
  height: 1px;
  background-image: linear-gradient(to right, var(--border-color) 50%, transparent 50%);
  background-size: 8px 1px;
  width: 100%;
}

/* Back link header */
.work-back {
  padding: 24px 32px;
}

.work-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.work-back a:hover {
  color: var(--text-primary);
}

/* Hero section with 2 column layout */
.work-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  position: relative;
}

.work-hero-grid::before {
  content: '';
  position: absolute;
  left: calc(100% - 400px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-color);
}

.work-hero-content {
  padding: 48px 40px;
}

.work-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.work-hero-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.work-hero-company {
  display: flex;
  flex-direction: column;
}

.work-hero-company strong {
  font-size: 1.125rem;
  font-weight: 600;
}

.work-hero-company span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.work-hero-content h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.work-hero-quote {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
}

.work-hero-quote footer {
  margin-top: 16px;
  font-style: normal;
}

.work-hero-quote footer strong {
  color: var(--text-primary);
  font-weight: 500;
}

.work-hero-quote footer span {
  color: var(--text-muted);
}

/* Hero image side */
.work-hero-image {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
}

.work-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

/* Three column info cards */
.work-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.work-info-grid::before,
.work-info-grid::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(to bottom, var(--border-color) 50%, transparent 50%);
  background-size: 1px 8px;
}

.work-info-grid::before {
  left: 33.333%;
}

.work-info-grid::after {
  left: 66.666%;
}

.work-info-card {
  padding: 32px;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 12px 12px;
}

.work-info-card h4 {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.work-info-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.work-info-card ul {
  list-style: none;
}

.work-info-card li {
  display: flex;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.work-info-card li svg {
  flex-shrink: 0;
  margin-right: 8px;
  margin-top: 2px;
  color: var(--accent-color);
}

/* Main content with sidebar */
.work-content-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  position: relative;
}

.work-content-grid::before {
  content: '';
  position: absolute;
  left: 260px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-color);
}

/* Sidebar */
.work-sidebar {
  padding: 40px 32px;
}

.work-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.work-sidebar-section {
  margin-bottom: 32px;
}

.work-sidebar-section h4 {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.work-sidebar-section p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.work-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.work-sidebar-item svg {
  flex-shrink: 0;
  color: var(--text-muted);
  margin-top: 2px;
}

.work-sidebar-item-content {
  display: flex;
  flex-direction: column;
}

.work-sidebar-item-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.work-sidebar-item-value {
  font-size: 0.875rem;
  color: var(--text-primary);
}

.work-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-sidebar-tag {
  padding: 6px 12px;
  background: var(--secondary-bg);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Main content area */
.work-main {
  padding: 40px 48px;
}

.work-prose {
  max-width: 780px;
}

.work-prose h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.work-prose h2:first-child {
  margin-top: 0;
}

.work-prose p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.work-prose blockquote {
  border-left: 3px solid var(--border-color);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-secondary);
}

.work-prose ul {
  margin: 20px 0;
  padding-left: 24px;
}

.work-prose li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* Gallery in main content */
.work-gallery-inline {
  margin: 48px 0;
  display: grid;
  gap: 16px;
}

.work-gallery-inline.two-col {
  grid-template-columns: repeat(2, 1fr);
}

/* Clean image display - no container, just the image */
.work-gallery-inline img,
.work-gallery-inline video {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
}

/* Video grid for embedded videos - stacked vertically */
.work-video-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.work-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  background: #000;
}

.work-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Feature grid for feature items */
.work-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.work-feature-item {
  padding: 24px;
  background: var(--secondary-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.work-feature-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.work-feature-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

  .work-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature columns - highlighted column paragraphs */
.work-feature-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0;
  padding: 32px 0;
}

.work-feature-column {
  display: flex;
  flex-direction: column;
}

.work-feature-column h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.work-feature-column p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .work-feature-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Press logos section */
.work-press-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 40px;
  margin: 32px 0 48px;
}

.work-press-logos a {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.work-press-logos a:hover {
  opacity: 1;
}

.work-press-logos img {
  height: 24px;
  width: auto;
  filter: grayscale(100%);
  object-fit: contain;
  transition: filter 0.2s ease;
}

.work-press-logos a:hover img {
  filter: grayscale(0%);
}

.work-press-logos img[alt="Washington Post"] {
  height: 16px;
}

.work-press-logos img[alt="TechCrunch"] {
  height: 20px;
}

.work-press-logos img[alt="Tech.co"] {
  height: 22px;
}

/* Testimonials section */
.work-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.work-testimonial {
  padding: 32px;
  background: var(--secondary-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.work-testimonial p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  font-style: italic;
}

.work-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.work-testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.work-testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.work-testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

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

/* Footer navigation */
.work-footer-nav {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.work-footer-link:hover {
  color: var(--text-primary);
}

/* Legacy styles kept for backwards compatibility */
.work-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--secondary-bg);
}

.work-meta {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.work-meta-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.work-meta-item strong {
  font-weight: 500;
}

.work-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  margin: 40px 0;
}

.work-section {
  max-width: 800px;
  margin: 0 auto 60px;
}

.work-section h2 {
  margin-bottom: 20px;
}

.work-section p {
  margin-bottom: 16px;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.work-gallery img {
  border-radius: var(--border-radius);
  width: 100%;
  transition: var(--transition);
}

.work-gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.work-gallery.single {
  grid-template-columns: 1fr;
}

/* Full-width gallery images */
.work-gallery-full {
  margin: 40px 0;
}

.gallery-full-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-full-image:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.01);
}

/* Responsive work page */
@media (max-width: 1024px) {
  .work-hero-grid {
    grid-template-columns: 1fr;
  }

  .work-hero-grid::before {
    display: none;
  }

  .work-hero-image {
    border-top: 1px solid var(--border-color);
  }

  .work-content-grid {
    grid-template-columns: 1fr;
  }

  .work-content-grid::before {
    display: none;
  }

  .work-sidebar {
    border-bottom: 1px solid var(--border-color);
  }

  .work-sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .work-page {
    padding-top: 80px;
  }

  .work-info-grid {
    grid-template-columns: 1fr;
  }

  .work-info-grid::before,
  .work-info-grid::after {
    display: none;
  }

  .work-info-card {
    border-bottom: 1px dashed var(--border-color);
  }

  .work-info-card:last-child {
    border-bottom: none;
  }

  .work-hero-content {
    padding: 32px 24px;
  }

  .work-main {
    padding: 32px 24px;
  }

  .work-gallery-inline.two-col {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--secondary-bg);
}

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

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content p {
  margin-bottom: 32px;
}

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

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

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

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

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-bg);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--text-primary);
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: left;
    padding: 0 24px;
    gap: 0;
  }

  .hero-left {
    position: static;
    order: 1;
    padding-top: 40px;
    align-items: flex-start;
  }

  .hero-right {
    position: static;
    order: 2;
    padding-top: 16px;
    padding-bottom: 24px;
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .hero-image {
    order: 3;
  }

  .hero-image img {
    max-width: 100%;
    max-height: none;
    margin-bottom: 0;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero::after {
    display: block;
    height: 150px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

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

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

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-container {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-image img {
    max-width: 100%;
    width: 100%;
  }

  .hero-image {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
    white-space: normal;
  }

  .services-grid,
  .testimonials-grid,
  .process-cards {
    grid-template-columns: 1fr;
  }

  .featured-in-section {
    padding: 32px 0;
  }

  .featured-in-logos {
    gap: 24px 32px;
  }

  .featured-logo img {
    height: 18px;
  }

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

  .work-gallery {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .work-meta {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FLOATING BUTTON ===== */
.floating-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--text-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 100;
}

.floating-btn:hover {
  transform: scale(1.1);
  background: #333;
}

@media (max-width: 768px) {
  .floating-btn {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .process-step .process-number {
    margin: 0 auto;
  }

  .process-line {
    display: none;
  }

  .modal {
    padding: 24px;
    margin: 16px;
  }

  .nav-links {
    padding: 4px;
  }

  .nav-links a {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-right p {
    font-size: 0.875rem;
  }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-page {
  min-height: 100vh;
  background: var(--primary-bg);
  padding-top: 120px;
  padding-bottom: 80px;
}

.blog-page-header {
  margin-bottom: 48px;
}

.blog-page-header h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.blog-page-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
}

/* Blog Grid Container */
.blog-grid-container {
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

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

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

/* SVG-based line dividers */
.solid-line {
  width: 100%;
  height: 1px;
  background: var(--border-color);
}

.dashed-line {
  width: 100%;
  height: 1px;
}

.dashed-vertical-divider {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

@media (min-width: 769px) {
  .dashed-vertical-divider {
    display: block;
  }
}

.blog-card-placeholder {
  display: block;
}

.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}

/* Blog Card Styles */
.blog-card {
  display: block;
  padding: 24px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.blog-card:hover {
  background: rgba(0, 0, 0, 0.02);
}

.blog-card-featured {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-featured .blog-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  padding: 6px;
}

.blog-card-featured .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.blog-card-featured h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

.blog-card-featured:hover h3 {
  opacity: 0.8;
}

.blog-card-featured p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.blog-card-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card-author span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blog-card-compact {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
}

/* Minimal meta styling (matching landing) */
.blog-card-meta-minimal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-category-text {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-meta-dot {
  color: var(--border-color);
}

.blog-date-text {
  color: var(--text-muted);
}

.blog-card-compact h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.blog-card-compact:hover h3 {
  opacity: 0.8;
}

.blog-card-compact p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-meta-divider {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  margin-top: 16px;
}

.blog-card-link svg {
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-link {
  color: var(--text-primary);
}

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

.blog-card:hover .blog-card-link {
  color: var(--text-primary);
  gap: 10px;
}

/* ===== BLOG POST WITH TOC LAYOUT ===== */
.blog-post {
  min-height: 100vh;
  background: var(--primary-bg);
  padding-top: 100px;
}

.blog-post-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 64px;
  align-items: start;
}

.blog-post-main {
  max-width: 780px;
}

/* Back link */
.blog-back {
  margin-bottom: 24px;
}

.blog-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.blog-back a:hover {
  color: var(--text-primary);
}

/* Cover Image */
.blog-cover-image {
  margin-bottom: 32px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.blog-cover-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog Post Header */
.blog-post-header {
  margin-bottom: 40px;
}

.blog-post-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.blog-post-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Blog Post Content */
.blog-post-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-post-content p {
  margin-bottom: 1.5em;
}

.blog-post-content h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2.5em;
  margin-bottom: 1em;
  letter-spacing: -0.02em;
  scroll-margin-top: 100px;
}

.blog-post-content ul {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

.blog-post-content li {
  margin-bottom: 0.5em;
  line-height: 1.7;
  list-style: disc;
}

.blog-post-content blockquote {
  margin: 2em 0;
  padding: 24px 32px;
  background: var(--secondary-bg);
  border-left: 4px solid var(--accent-color);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-primary);
}

.blog-post-content blockquote footer {
  margin-top: 12px;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--text-muted);
}

.blog-post-image {
  margin: 32px 0;
}

.blog-post-image img {
  width: 100%;
  border-radius: 8px;
}

.blog-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.blog-image-grid img {
  width: 100%;
  border-radius: 8px;
}

/* Blog Post Footer */
.blog-post-footer {
  margin-top: 64px;
  margin-bottom: 0;
  padding-top: 0;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.blog-back-link:hover {
  color: var(--text-primary);
}

/* TOC Sidebar */
.blog-post-sidebar {
  position: relative;
  align-self: stretch;
}

.blog-post-sidebar-sticky {
  position: sticky;
  top: 120px;
}

/* Table of Contents Component */
.toc {
  padding: 0;
}

.toc-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid var(--border-color);
}

.toc-item {
  margin: 0;
}

.toc-link {
  display: block;
  padding: 6px 0 6px 16px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: all 0.2s ease;
}

.toc-link:hover {
  color: var(--text-secondary);
}

.toc-link-active {
  color: var(--text-primary);
  border-left-color: var(--text-primary);
}

.toc-link-nested {
  padding-left: 32px;
}

/* Blog Post Meta */
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
}

.blog-date,
.blog-read-time {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blog-meta-divider {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Blog Author */
.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.blog-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

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

.blog-author-info strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.blog-author-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Blog Share */
.blog-share {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
}

.blog-share-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blog-share-links {
  display: flex;
  gap: 8px;
}

.blog-share-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--secondary-bg);
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.blog-share-link:hover {
  background: var(--text-primary);
  color: var(--primary-bg);
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .blog-post-sidebar {
    display: none;
  }

  .blog-post-main {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-post {
    padding-top: 80px;
  }

  .blog-post-header h1 {
    font-size: 1.5rem;
  }

  .blog-post-content {
    font-size: 1rem;
  }

  .blog-cover-image {
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
  }

  .blog-featured-grid,
  .blog-compact-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid-divider {
    display: none;
  }
}

/* ===== WORK PAGE ANIMATIONS ===== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Work page hero animation */
.work-hero-grid {
  animation: slideUp 0.8s ease-out;
}

.work-hero-content h1 {
  animation: slideUp 0.8s ease-out 0.1s both;
}

.work-hero-quote {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.work-hero-image {
  animation: scaleIn 0.8s ease-out 0.3s both;
}

/* Work info cards animation */
.work-info-grid {
  animation: slideUp 0.6s ease-out;
}

.work-info-card {
  animation: slideUp 0.6s ease-out both;
}

.work-info-card:nth-child(1) { animation-delay: 0.1s; }
.work-info-card:nth-child(2) { animation-delay: 0.2s; }
.work-info-card:nth-child(3) { animation-delay: 0.3s; }

/* Work gallery animations */
.work-gallery-inline {
  transition: transform 0.4s ease;
}

.work-gallery-inline.two-col img:first-child {
  transition-delay: 0s;
}

.work-gallery-inline.two-col img:last-child {
  transition-delay: 0.1s;
}

/* Work prose - no hidden state, content visible immediately */
.work-prose h2 {
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.work-prose p {
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Sidebar animation */
.work-sidebar-sticky {
  animation: fadeInRight 0.6s ease-out 0.4s both;
}

/* Work footer nav animation */
.work-footer-nav {
  animation: slideUp 0.5s ease-out;
}

/* Stats counter animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card {
  animation: countUp 0.6s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Project card hover enhancement */
.project-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-card-image {
  transition: transform 0.6s ease;
}

.project-card:hover .project-card-image {
  transform: scale(1.05);
}

/* ===== ROUNDME SHOWCASE PAGE ===== */
.roundme-showcase {
  min-height: 100vh;
  background: var(--primary-bg);
  overflow-x: hidden;
}

/* Roundme Hero */
.roundme-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.roundme-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.roundme-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.roundme-back:hover {
  color: var(--accent-color);
}

.roundme-hero-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.roundme-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roundme-tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 48px;
}

.roundme-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 400px;
}

.roundme-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.roundme-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.roundme-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Floating parallax images */
.roundme-hero-visuals {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roundme-float-img {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.4s ease;
  will-change: transform;
}

.roundme-float-img:hover {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.roundme-float-main {
  width: 90%;
  max-width: 600px;
  z-index: 2;
  right: 0;
  top: 10%;
}

.roundme-float-secondary {
  width: 60%;
  max-width: 350px;
  z-index: 1;
  left: -10%;
  bottom: 5%;
  opacity: 0.9;
}

/* Roundme Sections */
.roundme-section {
  padding: 120px 60px;
  position: relative;
}

.roundme-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.roundme-section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-top: 12px;
}

.roundme-section-content {
  max-width: 700px;
}

.roundme-section-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin: 12px 0 24px;
}

.roundme-lead {
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.roundme-section-content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Origin Section */
.roundme-origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--secondary-bg);
}

.roundme-section-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  will-change: transform;
}

/* Features Section */
.roundme-features {
  background: var(--primary-bg);
}

.roundme-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.roundme-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roundme-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.roundme-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 192, 71, 0.1);
  border-radius: 12px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.roundme-feature-card h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.roundme-feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Features Visual */
.roundme-features-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roundme-feature-img-main {
  width: 70%;
  max-width: 800px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  will-change: transform;
}

.roundme-feature-img-float {
  position: absolute;
  width: 40%;
  max-width: 400px;
  right: 5%;
  bottom: -10%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  will-change: transform;
}

/* Gallery Section */
.roundme-gallery {
  background: var(--secondary-bg);
}

.roundme-gallery-parallax {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.roundme-gallery-row {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.roundme-gallery-row img {
  width: 45%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  will-change: transform;
  transition: box-shadow 0.4s ease;
}

.roundme-gallery-row img:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.roundme-gallery-row:last-child img {
  width: 70%;
  max-width: 900px;
}

/* Results Section */
.roundme-results {
  background: var(--primary-bg);
  display: flex;
  justify-content: center;
}

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

.roundme-achievement {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.roundme-achievement svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Journey Section */
.roundme-journey {
  background: var(--secondary-bg);
  display: flex;
  justify-content: center;
}

.roundme-quote {
  margin: 32px 0;
  padding: 32px;
  background: var(--primary-bg);
  border-left: 4px solid var(--accent-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
}

.roundme-quote footer {
  margin-top: 16px;
  font-size: 0.9375rem;
  font-style: normal;
  color: var(--text-muted);
}

/* Navigation */
.roundme-nav {
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  border-top: 1px solid var(--border-color);
}

.roundme-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .roundme-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 40px 60px;
  }

  .roundme-hero-visuals {
    height: 400px;
    margin-top: 40px;
  }

  .roundme-float-main {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
  }

  .roundme-float-secondary {
    display: none;
  }

  .roundme-origin {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .roundme-features-visual {
    height: auto;
    flex-direction: column;
    gap: 20px;
  }

  .roundme-feature-img-main,
  .roundme-feature-img-float {
    position: relative;
    width: 100%;
    max-width: 100%;
    right: auto;
    bottom: auto;
  }
}

@media (max-width: 768px) {
  .roundme-section {
    padding: 80px 24px;
  }

  .roundme-hero {
    padding: 100px 24px 60px;
  }

  .roundme-title {
    font-size: 3rem;
  }

  .roundme-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .roundme-stat-number {
    font-size: 1.5rem;
  }

  .roundme-features-grid {
    grid-template-columns: 1fr;
  }

  .roundme-gallery-row {
    flex-direction: column;
    align-items: center;
  }

  .roundme-gallery-row img {
    width: 100%;
  }

  .roundme-nav {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }
}

.modal-content {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 8px;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-content h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.modal-content > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.modal-success {
  text-align: center;
  padding: 40px 20px;
}

.modal-success svg {
  margin-bottom: 24px;
}

.modal-success h3 {
  margin-bottom: 12px;
}

.modal-success p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ===== QUOTE FORM STYLES ===== */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--primary-bg);
  color: var(--text-primary);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 192, 71, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.quote-form .btn {
  margin-top: 8px;
}

.quote-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-error {
  background: #fee2e2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 16px;
  font-size: 0.875rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

  .modal-content {
    padding: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== LOCAL BUSINESS LANDING PAGE ===== */
.local-business-page {
  font-family: var(--font-family);
  background: #fff;
  color: #111;
}

.lb-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.lb-hero {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}

.lb-hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.lb-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 48px;
}

.lb-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.lb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.lb-stat-label {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 4px;
}

/* Sections */
.lb-section {
  padding: 80px 24px;
}

.lb-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
}

/* Grid layouts */
.lb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

/* Cards */
.lb-card {
  background: #f9f9f9;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
}

.lb-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.lb-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.lb-card p {
  color: #555;
  line-height: 1.6;
}

/* Why section */
.lb-why {
  background: #fff;
}

/* Process Timeline */
.lb-process {
  background: #f9f9f9;
}

.lb-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.lb-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: #ddd;
}

.lb-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.lb-timeline-number {
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.lb-timeline-content h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.lb-timeline-content p {
  color: #555;
  font-size: 0.9375rem;
  max-width: 200px;
  margin-bottom: 8px;
}

.lb-timeline-time {
  font-size: 0.8125rem;
  color: var(--accent-color);
  font-weight: 600;
}

/* Portfolio */
.lb-portfolio {
  background: #fff;
}

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

.lb-client-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lb-client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.lb-client-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #111;
}

.lb-client-card p {
  font-size: 0.9375rem;
  color: #666;
}

.lb-portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
  display: block;
}

.lb-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lb-portfolio-item:hover img {
  transform: scale(1.05);
}

.lb-portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.lb-portfolio-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.lb-portfolio-overlay p {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Features */
.lb-features {
  background: #f9f9f9;
}

.lb-checklist {
  list-style: none;
  padding: 0;
}

.lb-checklist li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid #eee;
}

.lb-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

/* Form Section */
.lb-form-section {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: #fff;
}

.lb-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  color: #111;
  padding: 48px;
  border-radius: 24px;
}

.lb-form-wrapper h2 {
  text-align: left;
  margin-bottom: 8px;
}

.lb-form-wrapper > p {
  color: #555;
  margin-bottom: 32px;
}

.lb-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lb-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lb-form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.lb-form-group input,
.lb-form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.lb-form-group input:focus,
.lb-form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.lb-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.lb-submit-btn {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  margin-top: 8px;
}

.lb-submit-btn:hover {
  transform: translateY(-2px);
  background: #00a83d;
}

.lb-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.lb-error {
  background: #fee2e2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.lb-success {
  text-align: center;
  padding: 40px 20px;
}

.lb-success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.lb-success h2 {
  margin-bottom: 12px;
}

.lb-success p {
  color: #555;
}

/* Footer */
.lb-footer {
  background: #111;
  color: #fff;
  padding: 32px 24px;
  text-align: center;
}

.lb-footer p {
  opacity: 0.7;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .lb-hero h1 {
    font-size: 2rem;
  }

  .lb-hero-stats {
    gap: 32px;
  }

  .lb-section {
    padding: 60px 24px;
  }

  .lb-grid-3,
  .lb-clients-grid {
    grid-template-columns: 1fr;
  }

  .lb-grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lb-timeline {
    flex-direction: column;
    gap: 32px;
  }

  .lb-timeline::before {
    display: none;
  }

  .lb-timeline-item {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .lb-timeline-content {
    flex: 1;
  }

  .lb-timeline-content p {
    max-width: none;
  }

  .lb-form-row {
    grid-template-columns: 1fr;
  }

  .lb-form-wrapper {
    padding: 32px 24px;
  }
}
