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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cabinet Grotesk', sans-serif;
  background: #FDFAF5;
  color: #1a1a1a;
}

/* ===== TOKENS ===== */
:root {
  --coral: #FF6B6B;
  --mint: #6BFFC8;
  --lavender: #C8BAFF;
  --yellow: #FFE566;
  --peach: #FFB38A;
  --cream: #FFF8ED;
  --dark: #1A1A2E;
  --border: 2.5px solid #1a1a1a;
  --radius: 24px;
  --shadow-clay: 6px 8px 0px #1a1a1a;
  --shadow-clay-hover: 3px 4px 0px #1a1a1a;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
}

.title-italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--coral);
}

.title-outline {
  -webkit-text-stroke: 2px #1a1a1a;
  color: transparent;
  font-family: 'Syne', sans-serif;
}

.section-tag {
  display: inline-block;
  background: var(--yellow);
  border: var(--border);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.tag-light {
  background: var(--mint);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 48px;
}

.section-title.light {
  color: #fff;
}

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

/* .section {
  padding: 100px 0;
  position: relative;
} */
.section {
  padding: 100px 0;
  position: relative;
  background-color: #FDFAF5;
  /* explicitly defines the base cream color */
}

.section-cream {
  background: linear-gradient(180deg, #FDFAF5 0%, var(--cream) 15%, var(--cream) 85%, #FDFAF5 100%);
}

.section-dark {
  background: linear-gradient(135deg, #2D1A18 0%, #170E0D 100%);
  position: relative;
  padding-top: 160px;
  padding-bottom: 160px;
}

/* ===== CLAYMORPHISM CARD ===== */
.clay-card {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-clay);
  transition: box-shadow 0.2s, transform 0.2s;
}

.clay-card:hover {
  box-shadow: var(--shadow-clay-hover);
  transform: translate(3px, 4px);
}

.clay-card--accent {
  background: var(--lavender);
}

/* ===== BUTTONS ===== */
.btn-brutal {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border: var(--border);
  border-radius: 9999px;
  position: relative;
  z-index: 10;
  box-shadow: 4px 4px 0 #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  white-space: nowrap;
}

.btn-brutal:hover {
  box-shadow: 2px 2px 0 #1a1a1a;
  transform: translate(2px, 2px);
}

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

.btn-light {
  background: var(--yellow);
  color: #1a1a1a;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #1a1a1a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border: var(--border);
  border-radius: 9999px;
  position: relative;
  z-index: 10;
  box-shadow: 4px 4px 0 #1a1a1a;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
}

.btn-ghost:hover {
  box-shadow: 2px 2px 0 #1a1a1a;
  transform: translate(2px, 2px);
}

.btn-full {
  display: block;
  text-align: center;
  width: 100%;
  white-space: normal;
}

.btn-xl {
  font-size: 18px;
  padding: 18px 36px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: var(--border);
  box-shadow: 0 4px 0 #1a1a1a;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  color: #1a1a1a;
}

.logo-dot {
  color: var(--coral);
  font-size: 28px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--coral);
}

/* MEGA MENU */
.nav-item-mega {
  position: relative;
}

.mega-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border: var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-clay);
  padding: 24px;
  min-width: 480px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 101;
  display: flex;
  gap: 40px;
}

.nav-item-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-menu-col h4 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.mega-menu-col a {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: block;
  padding: 2px 0;
}

.mega-menu-col a:hover {
  color: #1a1a1a;
  transform: translateX(4px);
}

.nav-cta {
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #1a1a1a;
  display: block;
  border-radius: 2px;
  transition: all 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 1001; /* Fixed z-index layering */
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 100px 24px 40px;
  gap: 24px;
  overflow-y: auto;
}

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

.mobile-dropdown {
  width: 100%;
}

.mobile-menu > a:not(.btn-brutal), .mobile-dropdown-btn {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  color: #1a1a1a;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  cursor: pointer;
  text-align: left;
}

.mobile-dropdown-btn span {
  font-size: 16px;
  transition: transform 0.3s;
  color: var(--coral);
}

.mobile-dropdown.active .mobile-dropdown-btn span {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding-left: 16px;
  margin-top: 16px;
  border-left: 2px solid rgba(0,0,0,0.1);
  width: 100%;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}

.mobile-dropdown-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 8px;
  margin-top: 8px;
}

.mobile-dropdown-content a {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  display: block;
}

/* Fix active state color for mobile menu links */
.mobile-menu > a.active:not(.btn-brutal) {
  color: var(--coral);
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
}

/* .hero-bg-blob {
  position: fixed; border-radius: 50%; filter: blur(80px);
  opacity: 0.35; pointer-events: none; z-index: -1;
} */
.hero-bg-blob {
  position: absolute;
  /* Changed from fixed to absolute */
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.blob1 {
  width: 500px;
  height: 500px;
  background: var(--lavender);
  top: -100px;
  right: -100px;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: var(--mint);
  bottom: 100px;
  left: -150px;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: var(--yellow);
  top: 50%;
  right: 30%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mint);
  border: var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 3px 3px 0 #1a1a1a;
  margin-bottom: 24px;
  max-width: 100%;
  box-sizing: border-box;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00c87a;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

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

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

.hero-title {
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.05;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-pill {
  background: #fff;
  border: var(--border);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 4px 4px 0 #1a1a1a;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--coral);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #777;
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-clay-card {
  position: relative;
  background: var(--lavender);
  border: var(--border);
  border-radius: 32px;
  box-shadow: 10px 10px 0 #1a1a1a;
  padding: 40px;
  width: 380px;
  text-align: center;
}

.rocket-img {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.floating-badge {
  position: absolute;
  background: #fff;
  border: var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 3px 3px 0 #1a1a1a;
  white-space: nowrap;
}

.badge-top {
  top: -16px;
  left: -20px;
}

.badge-bottom {
  bottom: 30px;
  right: -24px;
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  background: transparent;
  padding: 22px 0;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
}

.marquee-track .sep {
  color: var(--coral);
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===== SERVICES TRACK (Who We Are) ===== */
.services-track-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .services-track-grid {
    grid-template-columns: 1fr;
  }
}

.track-card-left {
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.track-cards-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.track-card {
  flex: 1; /* This splits the available height evenly between the two cards */
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
}

.track-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .track-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.track-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.track-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border: var(--border);
  border-radius: 100px;
  box-shadow: 2px 2px 0 #1a1a1a;
  white-space: nowrap;
}

.track-link {
  margin-top: auto;
  color: var(--coral);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  align-self: flex-start;
  transition: opacity 0.2s;
}

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

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-desc {
  color: #aaa;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-pill {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 24px;
  transition: background 0.2s;
}

.why-pill:hover {
  background: rgba(255, 255, 255, 0.12);
}

.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
  flex-shrink: 0;
  line-height: 1;
}

.why-pill strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.why-pill p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.process-arrow {
  font-size: 32px;
  color: var(--coral);
  font-weight: 900;
  padding: 0 8px;
  margin-top: 60px;
  flex-shrink: 0;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
  -webkit-text-stroke: 2px var(--coral);
  color: transparent;
}

.step-content {
  padding: 28px 24px;
  flex: 1;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

/* ===== LIVE PROJECTS & CASE STUDIES ===== */
.live-projects-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.live-project-card {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-clay);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.live-project-card:hover {
  box-shadow: var(--shadow-clay-hover);
  transform: translate(3px, 4px);
}

.project-visual-wrapper {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: var(--border);
}

.work-mockup {
  background: rgba(255, 255, 255, 0.9);
  border: var(--border);
  border-radius: 16px;
  width: 220px;
  padding: 16px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: transform 0.3s ease;
}

.live-project-card:hover .work-mockup {
  transform: scale(1.05) rotate(-2deg);
}

.mockup-bar {
  width: 60px;
  height: 8px;
  background: #ddd;
  border-radius: 4px;
  margin-bottom: 12px;
}

.mockup-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.mockup-line {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  margin-bottom: 6px;
}

.mockup-line.short {
  width: 60%;
}

.mockup-btn {
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  border-radius: 6px;
  margin-top: 10px;
}

.project-details-wrapper {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.project-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.project-type {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0;
}

.project-result-badge {
  align-self: flex-start;
  background: var(--mint);
  border: var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 2px 2px 0 #1a1a1a;
  margin-top: 4px;
}

.project-intro {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Tactile Brutalist Toggle Buttons */
.project-toggle-tabs {
  display: flex;
  gap: 12px;
  margin: 8px 0 20px;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 12px;
}

.project-toggle-btn {
  background: #fff;
  border: var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 2px 2px 0 #1a1a1a;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-toggle-btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 #1a1a1a;
}

.project-toggle-btn.active {
  background: var(--yellow);
  box-shadow: none;
  transform: translate(2px, 2px);
}

/* Dynamic Content Panels */
.project-panel-container {
  min-height: 180px;
  position: relative;
}

.project-panel {
  display: none;
}

.project-panel.active {
  display: block;
}

.case-study-item {
  margin-bottom: 12px;
}

.case-study-item strong {
  display: block;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.case-study-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.project-testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin: 0;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.user-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.user-info span {
  display: block;
  font-size: 12px;
  color: #666;
}

/* ===== DESIGN BLUEPRINTS ===== */
.blueprint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.blueprint-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blueprint-preview {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border);
}

.blueprint-mockup-frame {
  background: #fff;
  border: var(--border);
  border-radius: 12px;
  width: 240px;
  height: 180px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
  transition: transform 0.3s ease;
}

.blueprint-card:hover .blueprint-mockup-frame {
  transform: translateY(-5px);
}

.frame-bar {
  background: #eee;
  border-bottom: 2px solid #1a1a1a;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.frame-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #1a1a1a;
  display: inline-block;
}

.frame-bar .dot.red {
  background: #ff5f56;
}

.frame-bar .dot.yellow {
  background: #ffbd2e;
}

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

.frame-address {
  font-size: 10px;
  font-family: monospace;
  color: #666;
  margin-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.frame-content {
  flex-grow: 1;
  background: #fdfdfd;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px;
}

.blueprint-img {
  width: 85%;
  border-radius: 4px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.floating-accent {
  position: absolute;
  max-height: 85px;
  filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.15));
  border: 1.5px solid #1a1a1a;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  pointer-events: none;
  z-index: 3;
}

.accent-1 {
  top: 25px;
  left: 25px;
  transform: rotate(-10deg);
}

.accent-2 {
  bottom: 25px;
  right: 25px;
  transform: rotate(8deg);
}

.blueprint-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blueprint-tag {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.blueprint-info h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.blueprint-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.blueprint-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.blueprint-tech span {
  font-size: 11px;
  font-weight: 700;
  background: var(--cream);
  border: 1.5px solid #1a1a1a;
  border-radius: 100px;
  padding: 2px 10px;
}

.blueprint-actions {
  margin-top: auto;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

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

.pricing-card {
  padding: 40px 32px;
  position: relative;
}

.pricing-card--featured {
  background: var(--coral);
  color: #fff;
  transform: scale(1.04);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translate(3px, 4px);
}

.pricing-card--featured .pricing-price {
  color: #fff;
}

.pricing-card--featured .pricing-period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card--featured .pricing-name {
  color: #fff;
}

.pricing-card--featured .btn-brutal {
  background: #1a1a1a;
  color: #fff;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  border: var(--border);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  box-shadow: 3px 3px 0 #1a1a1a;
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
}

.pricing-period {
  font-size: 13px;
  color: #999;
  margin-bottom: 28px;
}

.pricing-card--featured .pricing-period {
  color: rgba(255, 255, 255, 0.7);
}

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

.pricing-list li {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.pricing-card--featured .pricing-list li {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== PRICING ENHANCEMENTS ===== */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.pricing-tab {
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2.5px solid #1a1a1a;
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: all 0.2s;
}

.pricing-tab:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #1a1a1a;
}

.pricing-tab.active {
  background: var(--coral);
  color: #fff;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.pricing-section {
  display: none;
}

.pricing-section.active {
  display: block;
}

.pricing-old-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.pricing-card--featured .pricing-old-price {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-discount-tag {
  display: inline-block;
  background: var(--mint);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1.5px solid #1a1a1a;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card--featured .pricing-discount-tag {
  background: var(--yellow);
}

.pricing-subtitle {
  font-size: 15px;
  color: #777;
  margin-bottom: 4px;
  font-weight: 500;
}

.pricing-card--featured .pricing-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-section-label {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-section-label .section-tag {
  margin-bottom: 12px;
}

.pricing-market-note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: #999;
  font-weight: 500;
}

.pricing-market-note strong {
  color: var(--coral);
  font-weight: 800;
}

@media (max-width: 600px) {
  .pricing-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .pricing-tab {
    width: 80%;
    text-align: center;
  }
}

/* ===== CONTACT ===== */
.section-cta {
  position: relative;
  padding-bottom: 180px;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}

.cta-blob1 {
  width: 600px;
  height: 600px;
  background: var(--lavender);
  top: -200px;
  right: -200px;
}

.cta-blob2 {
  width: 400px;
  height: 400px;
  background: var(--mint);
  bottom: -100px;
  left: -100px;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: #555;
  margin-bottom: 48px;
  line-height: 1.7;
}

.contact-form {
  padding: 48px;
  text-align: left;
  position: relative;
  z-index: 3;
}

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

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

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  border: var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px;
  background: var(--cream);
  outline: none;
  transition: box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 4px 4px 0 var(--coral);
}

/* ===== SVG WAVE DIVIDERS ===== */
.wave-container {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

/* .wave-top {
  top: -1px;
}

.wave-bottom {
  bottom: -1px;
}

.wave-svg {
  width: 100%;
  height: 100%;
  display: block;
} */
.wave-top {
  top: -2px;
  /* Increased from -1px to -2px for a safer overlap */
}

.wave-bottom {
  bottom: -2px;
  /* Increased from -1px to -2px for a safer overlap */
}

.wave-svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(1.02);
  /* Stretches the SVG horizontally by 2% to prevent edge gaps */
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: linear-gradient(180deg, #181312 0%, #0C0A09 100%);
  padding: 120px 0 40px;
  color: #a8a29e;
}

.footer-wave-container {
  position: absolute;
  top: -99px;
  left: 0;
  width: 100%;
  height: 100px;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.footer-wave {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  color: #fff;
  font-size: 26px;
}

.footer-brand p {
  color: #8c8581;
  font-size: 15px;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s;
}

.social-icon:hover {
  background: var(--yellow);
  color: #1a1a1a;
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-col a {
  color: #8c8581;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 14px;
  color: #6e6764;
}

.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.footer-meta a {
  color: #6e6764;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-meta a:hover {
  color: #fff;
}



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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-sub {
    margin: 0 auto 36px;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-steps {
    flex-direction: column;
    gap: 24px;
  }

  .process-arrow {
    display: none;
  }

  .live-project-card {
    grid-template-columns: 1fr;
  }

  .project-visual-wrapper {
    border-right: none;
    border-bottom: var(--border);
    min-height: 280px;
  }

  .project-details-wrapper {
    padding: 32px 20px;
  }

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

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

  .pricing-card--featured {
    transform: none;
  }

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

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}

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

  .contact-form {
    padding: 28px 20px;
  }

  .btn-xl {
    font-size: 15px;
    padding: 14px 24px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
}

/* ===== NEW MULTI-PAGE RESTUCTURE STYLES ===== */

/* Navigation Active Indicator */
.nav-links a.active {
  color: var(--coral);
  border-bottom: 2.5px solid var(--coral);
  padding-bottom: 4px;
}



/* Services Track Toggle & Segmented Switch */
.track-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.track-toggle-container {
  display: flex;
  background: #fff;
  border: var(--border);
  border-radius: 100px;
  padding: 6px;
  box-shadow: var(--shadow-clay);
  position: relative;
  z-index: 2;
}

.track-toggle-btn {
  background: none;
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.track-toggle-btn.active {
  background: #1a1a1a;
  color: #fff;
}

/* Accent Swapping in Services tracks */
.services-track-container {
  transition: all 0.35s ease-in-out;
}

.track-build-content,
.track-create-content {
  display: none;
}

.services-track-container.track-build .track-build-content {
  display: block;
}

.services-track-container.track-create .track-create-content {
  display: block;
}

/* Service Card accent overrides based on active track class on container */
.services-track-container.track-build .service-card.clay-card--accent {
  background: var(--lavender);
}
.services-track-container.track-create .service-card.clay-card--accent {
  background: var(--yellow);
}

/* Pricing Card accent overrides based on active track class on container */
.services-track-container.track-build .pricing-card.pricing-card--featured {
  background: var(--coral);
  color: #fff;
}
.services-track-container.track-create .pricing-card.pricing-card--featured {
  background: var(--mint);
  color: #1a1a1a;
}
.services-track-container.track-create .pricing-card.pricing-card--featured .pricing-name,
.services-track-container.track-create .pricing-card.pricing-card--featured .pricing-price,
.services-track-container.track-create .pricing-card.pricing-card--featured .pricing-list li {
  color: #1a1a1a;
}
.services-track-container.track-create .pricing-card.pricing-card--featured .pricing-period {
  color: rgba(26, 26, 26, 0.7);
}
.services-track-container.track-create .pricing-card.pricing-card--featured .btn-brutal {
  background: #1a1a1a;
  color: #fff;
}

/* Homepage Who We Are & What We Do */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}

.brand-story-card {
  padding: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-story-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.brand-story-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.track-teasers {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.teaser-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.teaser-card.teaser-build {
  background: #fff;
}
.teaser-card.teaser-create {
  background: #fff;
}

.teaser-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.teaser-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.teaser-tag {
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 2px 2px 0 #1a1a1a;
}

.teaser-card.teaser-build .teaser-tag {
  background: var(--lavender);
}

.teaser-card.teaser-create .teaser-tag {
  background: var(--yellow);
}

.teaser-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.teaser-link {
  font-weight: 700;
  color: var(--coral);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s;
  align-self: flex-start;
}

.teaser-link:hover {
  transform: translateX(4px);
}

/* About Us Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-avatar-wrapper {
  margin-bottom: 24px;
  position: relative;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  box-shadow: 4px 4px 0 #1a1a1a;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-avatar.avatar-1 { background: var(--coral); }
.team-avatar.avatar-2 { background: var(--mint); }
.team-avatar.avatar-3 { background: var(--lavender); }
.team-avatar.avatar-4 { background: var(--yellow); }

.team-card:hover .team-avatar {
  transform: scale(1.1) rotate(6deg);
}

.team-role {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.team-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* New Responsive Queries */
@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== SERVICES PAGE SPECIFICS ===== */
.track-selector-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.track-toggle-btn {
  background: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border: var(--border);
  border-radius: 100px;
  box-shadow: 4px 4px 0 #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.track-toggle-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #1a1a1a;
}

.track-toggle-btn.active[data-track="build"] {
  background: var(--lavender);
}

.track-toggle-btn.active[data-track="create"] {
  background: var(--yellow);
}

.services-track-container {
  position: relative;
  width: 100%;
}

.track-build-content,
.track-create-content {
  display: none;
}

.services-track-container.track-build .track-build-content {
  display: block;
}

.services-track-container.track-create .track-create-content {
  display: block;
}

/* Service Package Cards Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

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

.package-card.featured {
  background: var(--cream);
  border-color: var(--coral);
  transform: scale(1.02);
  box-shadow: 8px 10px 0 #1a1a1a;
}

.package-card.featured:hover {
  transform: scale(1.02) translate(3px, 4px);
  box-shadow: var(--shadow-clay-hover);
}

.package-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border: var(--border);
  border-radius: 100px;
  background: var(--mint);
  margin-bottom: 20px;
}

.package-card.featured .package-badge {
  background: var(--coral);
  color: #fff;
}

.package-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.package-price {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.package-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.package-features {
  list-style: none;
  margin-top: auto;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.package-features li::before {
  content: 'âš¡';
  color: var(--coral);
}

/* Pricing Calculator Styling */
.calculator-section {
  background: var(--cream);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 100px 0;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 6fr 4.5fr;
  gap: 48px;
  align-items: start;
}

.calc-controls {
  padding: 40px;
}

.calc-group {
  margin-bottom: 40px;
}

.calc-group label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.calc-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Range input styling */
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 10px;
  background: #eee;
  border: var(--border);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  border: var(--border);
  cursor: pointer;
  box-shadow: 2px 2px 0 #1a1a1a;
  transition: transform 0.1s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.calc-val-bubble {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  background: var(--yellow);
  border: var(--border);
  border-radius: 10px;
  padding: 6px 16px;
  min-width: 60px;
  text-align: center;
  box-shadow: 3px 3px 0 #1a1a1a;
}

/* Select Box */
.calc-select {
  width: 100%;
  padding: 14px 20px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: var(--border);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  outline: none;
}

/* Checkbox group */
.calc-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.calc-checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.calc-custom-checkbox {
  width: 26px;
  height: 26px;
  border: var(--border);
  border-radius: 6px;
  background: #fff;
  display: inline-block;
  position: relative;
  transition: background 0.15s;
  box-shadow: 2px 2px 0 #1a1a1a;
}

.calc-checkbox-label:hover input ~ .calc-custom-checkbox {
  background: #f0f0f0;
}

.calc-checkbox-label input:checked ~ .calc-custom-checkbox {
  background: var(--mint);
}

.calc-custom-checkbox::after {
  content: '';
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid #1a1a1a;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.calc-checkbox-label input:checked ~ .calc-custom-checkbox::after {
  display: block;
}

.calc-feature-price {
  margin-left: auto;
  font-size: 14px;
  color: #777;
  font-weight: 700;
}

/* Calc Results Panel */
.calc-results-card {
  padding: 48px;
  background: var(--lavender);
  text-align: center;
  position: sticky;
  top: 100px;
}

.calc-results-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
}

.calc-results-price {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1;
}

.calc-results-meta {
  font-size: 14px;
  color: #555;
  font-weight: 600;
  margin-bottom: 36px;
}

/* Comparison Table Styling */
.comparison-section {
  padding: 100px 0;
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-clay);
  background: #fff;
  margin-top: 48px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 28px;
  border-bottom: 2px solid #1a1a1a;
}

.comparison-table th {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  background: var(--peach);
}

.comparison-table th:first-child {
  background: var(--peach);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 700;
  font-size: 15px;
}

.comparison-table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}

.comparison-check {
  color: #00b067;
  font-weight: 900;
  font-size: 18px;
}

.comparison-cross {
  color: var(--coral);
  font-weight: 900;
  font-size: 18px;
}

/* Services CTA Banner */
.services-cta-banner {
  background: var(--mint);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-clay);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.services-cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.services-cta-banner p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Page Heroes (Shared style for about.html & services.html) */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.05;
}

.page-sub {
  font-size: 20px;
  line-height: 1.7;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
}

/* Brand Manifesto Section (about.html) */
.manifesto-box {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  padding: 60px 48px;
  gap: 60px;
  align-items: center;
  background: #fff;
}

.manifesto-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.manifesto-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.manifesto-right p:last-child {
  margin-bottom: 0;
}

/* About Values */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.about-value-card {
  padding: 40px 32px;
}

.value-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--coral);
  -webkit-text-stroke: 1.5px var(--coral);
  color: transparent;
  margin-bottom: 16px;
  line-height: 1;
}

.about-value-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .calc-results-card {
    position: static;
  }
}

@media (max-width: 900px) {
  .packages-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .manifesto-box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }
  .package-card.featured {
    transform: none;
  }
  .package-card.featured:hover {
    transform: translate(3px, 4px);
  }
}

/* MOBILE RESPONSIVENESS FIXES */
html { scroll-padding-top: 120px; }
@media (max-width: 768px) {
  .clay-card, .service-card, .live-project-card, .process-step, .pricing-card, .why-pill { padding: 24px; width: 100%; box-sizing: border-box; }
  .container { padding: 0 16px; }
  .services-track-grid, .intro-grid, .feature-grid, .why-grid, .process-grid, .pricing-grid, .faq-grid, .footer-grid, .team-grid, .packages-grid, .calculator-grid, .manifesto-box, .about-values-grid { grid-template-columns: 1fr; width: 100%; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: flex; z-index: 1001; }
  #navbar { z-index: 1002; }
}
