/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Inter+Tight:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

/* Import Clash Display font */
@font-face {
  font-family: "Clash Display";
  src: url("https://fonts.cdnfonts.com/s/95831/ClashDisplay-Regular.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Clash Display Medium";
  src: url("https://fonts.cdnfonts.com/s/95831/ClashDisplay-Medium.woff")
    format("woff");
  font-weight: 500;
  font-style: normal;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* CSS Variables */
:root {
  --primary-green: #99ff33;
  --primary-purple: #9887ff;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --border-color: rgba(255, 255, 255, 0.1);
  --surface-dark: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --max-width: 1400px;
}

/* Premium Navigation */
.nav-premium {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  overflow: visible;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.logo-wrapper {
  justify-self: start;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}

a.logo-wrapper:hover .logo-text {
  color: var(--primary-green);
  transition: color 0.3s ease;
}

.logo-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-self: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

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

.nav-cta {
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  justify-self: end;
}

.nav-cta:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  pointer-events: auto !important;
}

.mobile-menu-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
  z-index: 10000;
}

.mobile-nav-link {
  color: var(--text-primary) !important;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav-link:hover {
  color: var(--primary-green) !important;
}

.mobile-nav-cta {
  background: transparent;
  color: var(--text-primary) !important;
  text-decoration: none;
  padding: 18px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 20px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav-cta:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-green);
  color: var(--primary-green) !important;
}

/* Hero Section */
.hero-premium {
  min-height: 100vh;
  padding: 140px 40px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(153, 255, 51, 0.08) 0%,
    transparent 50%
  );
}

.hero-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  text-align: center;
  margin-bottom: 60px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  font-weight: 400;
}

.title-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-bottom: 16px;
}

.title-regular {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  display: inline-block;
  margin-right: 16px;
}

.title-highlight {
  color: var(--primary-green);
  font-weight: 500;
}

.hero-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

/* View Pricing Button */
.hero-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.view-pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #000000;
  color: var(--text-primary);
  text-decoration: none;
  padding: 24px 48px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.view-pricing-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface-hover);
}

.view-pricing-btn svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.view-pricing-btn:hover svg {
  transform: translateX(4px);
}

/* Hero Slideshow */
.hero-slideshow {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--surface-dark);
}

.slideshow-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slideshow-track {
  display: flex;
  animation: slide 20s linear infinite;
}

.slideshow-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-400%);
  }
}

.slideshow-label {
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

/* We Offer Section */
.we-offer-section {
  margin: 80px 0;
  position: relative;
}

.we-offer-header {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}

.we-offer-scroll {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.we-offer-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  width: fit-content;
}

.we-offer-track span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 12px 24px;
  background: var(--surface-dark);
  border: 1px solid var(--border-color);
  border-radius: 100px;
}

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

/* Process Badges */
.process-badges {
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--surface-dark),
    transparent
  );
}

.badge-track {
  display: flex;
  gap: 40px;
  animation: badge-scroll 15s linear infinite;
  width: fit-content;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.badge-item span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.badge-item svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

@keyframes badge-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

/* Work Section - Ultra Premium Redesign */
.work-section-ultra {
  background: #000000;
  padding: 120px 40px 160px;
  position: relative;
  overflow: hidden;
}

.work-section-ultra::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(153, 255, 51, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.work-header-ultra {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.work-badge {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--primary-green);
  margin-bottom: 24px;
  opacity: 0.8;
}

.work-title-ultra {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.gradient-text {
  color: var(--primary-green);
}

.work-subtitle-ultra {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 60px;
}

.work-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

.stat-value {
  display: block;
  font-family: "Inter Tight", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.stat-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

/* Featured Project */
.work-featured {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 60px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.featured-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  background: rgba(153, 255, 51, 0.1);
  border: 1px solid rgba(153, 255, 51, 0.2);
  border-radius: 100px;
  color: var(--primary-green);
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.featured-year {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: var(--primary-green);
}

.featured-dot {
  color: rgba(255, 255, 255, 0.2);
}

.featured-category {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.featured-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.featured-description {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.featured-results {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.result-item {
  display: flex;
  flex-direction: column;
}

.result-metric {
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.result-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

.featured-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.tech-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary-green);
  color: #000000;
  text-decoration: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.featured-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(153, 255, 51, 0.3);
}

.featured-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

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

.image-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--primary-green);
}

/* Work Grid Ultra */
.work-grid-ultra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.work-card-ultra {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    var(--primary-green) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.work-card-ultra:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.work-card-ultra:hover .card-glow {
  opacity: 0.1;
}

.work-link-ultra {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-visual-ultra {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.work-visual-ultra img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-card-ultra:hover .work-visual-ultra img {
  transform: scale(1.1);
}

.work-badge-float {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--primary-green);
}

.work-content-ultra {
  padding: 32px;
  position: relative;
}

.work-meta-ultra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.work-client {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.work-type {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  color: var(--primary-purple);
}

.work-name-ultra {
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.work-metrics {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.work-metrics span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.work-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.work-card-ultra:hover .work-arrow {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.work-card-ultra:hover .work-arrow svg {
  stroke: #000000;
}

/* More Work Card */
.work-card-ultra.more-work {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(152, 135, 255, 0.05) 0%,
    rgba(153, 255, 51, 0.05) 100%
  );
  min-height: 380px;
}

.more-work-content {
  text-align: center;
  padding: 40px;
}

.more-work-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 24px;
}

.more-work-content h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.more-work-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.more-work-cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.more-work-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.work-section-premium {
  background: #000000;
  padding: 120px 40px;
  position: relative;
}

.work-section-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(
    ellipse at top center,
    rgba(153, 255, 51, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.work-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.work-header-premium {
  text-align: center;
  margin-bottom: 80px;
}

.work-title {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.work-serif {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.work-subtitle {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
}

.work-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Featured Project */
.work-card.featured {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  overflow: hidden;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.work-card.featured .work-visual {
  height: 500px;
}

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

.work-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.work-link-premium {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-visual {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-card:hover .work-visual img {
  transform: scale(1.08);
}

.view-project {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary-green);
}

.work-content {
  padding: 32px;
}

.work-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.work-year,
.work-category {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.work-category {
  color: var(--primary-green);
}

.work-name {
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.work-description {
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

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

.work-tech span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* Under NDA Section */
.work-nda {
  background: linear-gradient(
    135deg,
    rgba(152, 135, 255, 0.05) 0%,
    rgba(153, 255, 51, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.nda-content h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.nda-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}

/* TESTIMONIALS SECTION - Ultra Premium */
.testimonials-section {
  background: #000000;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(153, 255, 51, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-badge {
  font-family: "Clash Display Medium", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.testimonials-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 80px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.testimonials-serif {
  font-style: italic;
}

.testimonials-subtitle {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 64px;
}

/* Featured Testimonial */
.testimonial-featured {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 48px;
  position: relative;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.testimonial-quote-icon {
  font-size: 48px;
  color: #99ff33;
  margin-bottom: 24px;
}

.featured-quote {
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-weight: 300;
}

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

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

.author-info h4 {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.author-info p {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.author-metrics {
  display: flex;
  gap: 16px;
}

.author-metrics span {
  font-family: "Space Grotesk", monospace;
  font-size: 12px;
  color: #99ff33;
}

/* Small Testimonials Grid */
.testimonials-small {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(153, 255, 51, 0.3);
  transform: translateY(-4px);
}

.rating {
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.testimonial-footer h5 {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.testimonial-footer span {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Testimonial CTA */
.testimonial-cta {
  text-align: center;
}

.testimonial-cta p {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.testimonial-button {
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  background: #99ff33;
  color: #000000;
  border-radius: 100px;
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonial-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(153, 255, 51, 0.3);
}

/* RESULTS SECTION */
.results-section {
  background: #000000;
  padding: 120px 20px;
  position: relative;
}

.results-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(152, 135, 255, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.results-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.results-header {
  text-align: center;
  margin-bottom: 80px;
}

.results-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 80px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
}

.results-serif {
  font-style: italic;
}

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

.result-card {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(153, 255, 51, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-card:hover::before {
  opacity: 1;
}

.result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(153, 255, 51, 0.3);
}

.result-number {
  font-family: "Clash Display", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #99ff33;
  line-height: 1;
  margin-bottom: 8px;
}

.result-suffix {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.result-description {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}

/* Results Showcase */
.results-showcase {
  background: linear-gradient(
    135deg,
    rgba(153, 255, 51, 0.05) 0%,
    rgba(152, 135, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 48px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.results-showcase h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
  text-align: center;
}

.metrics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.metric-icon {
  font-size: 24px;
}

.metric-text {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Testimonials & Results */
@media (max-width: 1024px) {
  .testimonials-small {
    grid-template-columns: 1fr;
  }

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

  .metrics-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .testimonials-title {
    font-size: 48px;
    line-height: 56px;
  }

  .results-title {
    font-size: 48px;
    line-height: 56px;
  }

  .result-number {
    font-size: 48px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-featured {
    padding: 32px 24px;
  }

  .featured-quote {
    font-size: 20px;
    line-height: 30px;
  }
}

/* TECH STACK SECTION */
.tech-stack-section {
  background: #000000;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.tech-stack-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(153, 255, 51, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(152, 135, 255, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.tech-stack-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tech-header {
  text-align: center;
  margin-bottom: 80px;
}

.tech-badge {
  font-family: "Clash Display Medium", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.tech-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 80px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tech-serif {
  font-style: italic;
}

.tech-subtitle {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.tech-category {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 48px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transition: all 0.3s ease;
}

.tech-category:hover {
  border-color: rgba(153, 255, 51, 0.3);
  transform: translateY(-4px);
}

.tech-category h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
}

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

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(153, 255, 51, 0.2);
  transform: translateY(-2px);
}

.tech-icon {
  font-size: 32px;
  line-height: 1;
}

.tech-item span {
  font-family: "Space Grotesk", monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* Tech CTA */
.tech-cta {
  text-align: center;
}

.tech-cta p {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.tech-button {
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  background: #9887ff;
  color: #000000;
  border-radius: 100px;
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tech-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(152, 135, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tech-categories {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .tech-title {
    font-size: 48px;
    line-height: 56px;
  }

  .tech-category {
    padding: 32px 24px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* MID-PAGE CTA SECTION */
.cta-mid-section {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.cta-mid-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at center,
    rgba(153, 255, 51, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.cta-mid-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-mid-title {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 72px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-serif {
  font-style: italic;
}

.cta-mid-subtitle {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-mid-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.cta-primary-button {
  display: inline-flex;
  align-items: center;
  padding: 24px 48px;
  background: #99ff33;
  color: #000000;
  border-radius: 100px;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(153, 255, 51, 0.3);
}

.cta-secondary-button {
  display: inline-flex;
  align-items: center;
  padding: 24px 48px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.cta-trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.cta-trust-badges span {
  font-family: "Space Grotesk", monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* PRICING CTA SECTION */
.cta-pricing-section {
  background: #000000;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.cta-pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(153, 255, 51, 0.1) 0%,
    transparent 50%,
    rgba(152, 135, 255, 0.1) 100%
  );
  pointer-events: none;
}

.cta-pricing-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-pricing-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255, 56, 92, 0.2);
  border: 1px solid rgba(255, 56, 92, 0.3);
  border-radius: 100px;
  font-family: "Space Grotesk", monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #ff385c;
  margin-bottom: 24px;
}

.cta-pricing-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.cta-pricing-subtitle {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.cta-pricing-button {
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(135deg, #99ff33 0%, #88ee22 100%);
  color: #000000;
  border-radius: 100px;
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.cta-pricing-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(153, 255, 51, 0.4);
}

.cta-pricing-timer span {
  font-family: "Space Grotesk", monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for CTA Sections */
@media (max-width: 640px) {
  .cta-mid-title {
    font-size: 48px;
    line-height: 56px;
  }

  .cta-mid-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .cta-trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  .cta-pricing-title {
    font-size: 36px;
    line-height: 44px;
  }
}

/* How It Works */
.how-it-works {
  padding: 120px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.how-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: left;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--text-tertiary);
  line-height: 1;
}

.step-header h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section-premium {
  padding: 120px 40px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(152, 135, 255, 0.08) 0%,
    transparent 50%
  );
}

.pricing-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-title-premium {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 80px;
  font-weight: 500;
  font-family: "Inter Tight", sans-serif;
}

.pricing-serif {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.1;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Homepage Pricing Cards */
.pricing-card.mvp-card,
.pricing-card.retainer-card {
  position: relative;
  border: 15px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border-radius: 40px;
  transition: all 0.3s ease;
  padding: 0;
  overflow: hidden;
}

.pricing-card.mvp-card {
  border: 15px solid var(--primary-green) !important;
}

.pricing-card.retainer-card {
  border: 15px solid var(--primary-purple) !important;
}

.pricing-card.mvp-card:hover,
.pricing-card.retainer-card:hover {
  transform: translateY(-4px);
}

.pricing-card.mvp-card:hover {
  box-shadow: 0 20px 40px rgba(153, 255, 51, 0.15);
}

.pricing-card.retainer-card:hover {
  box-shadow: 0 20px 40px rgba(152, 135, 255, 0.15);
}

.card-inner {
  background: transparent;
  padding: 56px 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 40px;
}

.plan-info {
  margin-bottom: 48px;
}

.plan-name {
  font-family: "Inter Tight", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
}

.pricing-card.mvp-card .plan-name {
  color: var(--primary-green);
}

.pricing-card.retainer-card .plan-name {
  color: var(--primary-purple);
}

.plan-description {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.price-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 6px;
}

.price-prefix {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  width: 100%;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.currency {
  font-size: 32px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 4px;
  font-family: "Inter", sans-serif;
}

.price {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Inter", sans-serif;
}

.pricing-card.mvp-card .price {
  color: var(--primary-green);
}

.pricing-card.retainer-card .price {
  color: var(--primary-purple);
}

.period {
  font-size: 32px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 6px;
  font-family: "Inter", sans-serif;
}

.price-type {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  font-weight: 400;
  font-family: "Inter Tight", sans-serif;
}

.guarantee-box {
  background: rgba(153, 255, 51, 0.05);
  border: 1px solid rgba(153, 255, 51, 0.2);
  border-radius: 20px;
  padding: 20px 24px;
  margin-top: 0;
}

.pricing-card.retainer-card .guarantee-box {
  background: rgba(152, 135, 255, 0.05);
  border-color: rgba(152, 135, 255, 0.2);
}

.guarantee {
  font-size: 14px;
  color: var(--primary-green);
  display: block;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Inter Tight", sans-serif;
}

.pricing-card.retainer-card .guarantee {
  color: var(--primary-purple);
}

.features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature span {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.feature span strong {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  width: 100%;
  padding: 22px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: auto;
  display: block;
  border: none;
  color: #000000;
  font-family: "Inter Tight", sans-serif;
  text-transform: uppercase;
}

.mvp-button {
  background: var(--primary-green);
  color: #000000;
}

.mvp-button:hover {
  background: rgba(153, 255, 51, 0.9);
  transform: translateY(-2px);
}

.retainer-button {
  background: var(--primary-purple);
  color: #000000;
}

.retainer-button:hover {
  background: rgba(152, 135, 255, 0.9);
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: 60px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note p {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.pricing-note strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Comparison Section - Premium Redesign */
.comparison-section {
  padding: 120px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  background: #000000;
  position: relative;
}

.comparison-container {
  max-width: 1400px;
  margin: 0 auto;
}

.comparison-header-new {
  text-align: center;
  margin-bottom: 80px;
}

.comparison-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  font-style: italic;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
}

.comparison-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.comparison-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.comparison-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.comparison-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.winner-card {
  border-color: rgba(153, 255, 51, 0.3);
  background: linear-gradient(
    135deg,
    rgba(153, 255, 51, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: 0 0 40px rgba(153, 255, 51, 0.1);
}

.winner-card:hover {
  border-color: rgba(153, 255, 51, 0.5);
  box-shadow: 0 20px 60px rgba(153, 255, 51, 0.15);
}

.card-header {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.provider-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.provider-name {
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0;
}

.winner-card .provider-name {
  color: var(--primary-green);
}

.winner-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--primary-green);
  color: #000000;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.card-glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(153, 255, 51, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.winner-card:hover .card-glow-effect {
  opacity: 1;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.winner-card .feature-icon {
  background: rgba(153, 255, 51, 0.1);
  border-color: rgba(153, 255, 51, 0.2);
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 500;
}

.feature-value {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.winner-card .feature-value {
  color: var(--primary-green);
}

.feature-value.muted {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .comparison-grid-new {
    gap: 24px;
  }

  .comparison-card {
    padding: 32px;
  }
}

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

  .comparison-header-new {
    margin-bottom: 48px;
  }

  .comparison-title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .comparison-subtitle {
    font-size: 16px;
  }

  .comparison-grid-new {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .comparison-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .card-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .provider-name {
    font-size: 20px;
  }

  .winner-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .card-features {
    gap: 20px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .feature-value {
    font-size: 15px;
  }

  .feature-label {
    font-size: 11px;
  }

  /* Portfolio section mobile fixes */
  .work-section-ultra {
    padding: 80px 20px 100px;
  }

  .work-header-ultra {
    margin-bottom: 60px;
  }

  .work-badge {
    font-size: 11px;
    padding: 6px 12px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
  }

  .work-title-ultra {
    font-size: 36px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 16px;
  }

  .work-subtitle-ultra {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .work-stats {
    gap: 30px;
    margin-bottom: 40px;
  }

  .stat-value {
    font-size: 36px;
  }

  .stat-label {
    font-size: 12px;
  }

  .work-featured {
    padding: 32px 20px;
    border-radius: 24px;
    margin-bottom: 40px;
  }

  .featured-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .featured-meta {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }

  .featured-year,
  .featured-dot,
  .featured-category {
    font-size: 12px;
  }

  .featured-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .featured-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .featured-tech {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }

  .tech-item {
    font-size: 13px;
    padding: 8px 14px;
  }

  .featured-image {
    height: 250px;
    border-radius: 16px;
  }

  .featured-image img {
    object-fit: cover;
  }

  .image-badge {
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    font-size: 10px;
  }

  .featured-cta {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .work-badge-float {
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 10px;
  }

  .work-grid-ultra {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .work-card-ultra {
    border-radius: 20px;
  }

  .work-visual-ultra {
    height: 220px;
  }

  .work-content-ultra {
    padding: 20px;
  }

  .work-meta-ultra {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .work-client {
    font-size: 11px;
  }

  .work-type {
    font-size: 12px;
  }

  .work-name-ultra {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .work-metrics {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
  }

  .work-metrics span {
    font-size: 13px;
  }
}

.provider {
  text-align: center;
}

.provider h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.provider.minidev h3 {
  color: var(--primary-green);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-green);
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.comparison-row {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-label {
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-cell {
  text-align: center;
  color: var(--text-secondary);
}

.comparison-cell.highlight {
  color: var(--primary-green);
  font-weight: 600;
}

/* FAQ Section */
.faq-section-premium {
  padding: 120px 40px;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.faq-section-premium::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(152, 135, 255, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-title-premium {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.1;
  font-style: italic;
  text-align: center;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.faq-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  color: var(--text-tertiary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.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: 0 32px 32px;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

/* Calendar Section */
.calendar-section {
  padding: 120px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.calendar-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.calendar-title {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.calendar-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

#my-cal-inline-30min {
  background: var(--surface-dark);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px;
  min-height: 600px;
}

/* Footer - Premium Dark Theme */
.footer-premium {
  background: #000000;
  padding: 100px 40px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(
    ellipse at top center,
    rgba(152, 135, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  margin-bottom: 80px;
}

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

.footer-column h4 {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-tagline {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
}

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

.footer-links a {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

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

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(
    135deg,
    rgba(153, 255, 51, 0.1) 0%,
    rgba(152, 135, 255, 0.1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.footer-cta:hover {
  background: linear-gradient(
    135deg,
    rgba(153, 255, 51, 0.2) 0%,
    rgba(152, 135, 255, 0.2) 100%
  );
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(153, 255, 51, 0.2);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-logo-large {
  font-family: "Playfair Display", serif;
  font-size: 120px;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-copyright p {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .work-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-premium {
    width: 100%;
    max-width: 100vw;
    overflow: visible;
  }

  .nav-container {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
  }

  .logo-text {
    font-size: 16px;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-shrink: 0;
    min-width: 40px;
    z-index: 10000;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-overlay {
    z-index: 9999;
  }

  .mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    pointer-events: auto !important;
  }

  .mobile-menu-content {
    padding: 100px 20px 40px;
    display: flex !important;
    z-index: 10000;
  }

  .mobile-nav-link {
    font-size: 20px;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }

  .mobile-nav-cta {
    font-size: 16px;
    padding: 14px 20px;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }

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

  .pricing-card {
    border-width: 15px;
    border-radius: 32px;
  }
  
  .pricing-card.mvp-card,
  .pricing-card.retainer-card {
    border-width: 15px !important;
  }

  .card-inner {
    border-radius: 32px;
    padding: 40px 28px;
  }

  .guarantee-box {
    border-radius: 16px;
  }

  .plan-info {
    margin-bottom: 32px;
  }

  .plan-name {
    font-size: 32px;
  }

  .plan-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .price-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .price {
    font-size: 56px;
  }

  .currency {
    font-size: 24px;
  }

  .period {
    font-size: 24px;
  }

  .features-list {
    gap: 16px;
    margin-bottom: 32px;
  }

  .feature span {
    font-size: 14px;
  }

  .guarantee-box {
    padding: 16px 20px;
  }

  .cta-button {
    padding: 18px 32px;
    font-size: 15px;
  }

  .price-type {
    margin-bottom: 20px;
  }

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

  .work-card.featured .work-visual {
    height: 300px;
  }

  .work-title {
    font-size: 48px;
    line-height: 56px;
  }

  .hero-title {
    font-size: 48px;
  }

  .view-pricing-btn {
    font-size: 24px;
    padding: 16px 32px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-logo-large {
    font-size: 60px;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.02) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* Page Styles - About, Contact, etc. */
.page-hero {
  background: #000000;
  padding: 120px 40px 80px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(
    ellipse at top center,
    rgba(152, 135, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-serif {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero-subtitle {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.5);
}

/* About Content */
.about-content-section {
  background: #000000;
  padding: 80px 40px 120px;
}

.content-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 80px;
}

.section-title-serif {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.large-text {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 800px;
  margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 120px;
}

.stat-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.stat-number {
  font-family: "Inter Tight", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.stat-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

/* Values Section */
.values-section {
  margin-bottom: 120px;
}

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

.value-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.value-item h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.value-item p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
}

/* Team Section */
.team-section {
  margin-bottom: 120px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

.team-member {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.member-info h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.member-role {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.member-bio {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(
    135deg,
    rgba(152, 135, 255, 0.05) 0%,
    rgba(153, 255, 51, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.cta-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.cta-button-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 40px;
  background: linear-gradient(
    135deg,
    rgba(153, 255, 51, 0.1) 0%,
    rgba(152, 135, 255, 0.1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-button-large:hover {
  background: linear-gradient(
    135deg,
    rgba(153, 255, 51, 0.2) 0%,
    rgba(152, 135, 255, 0.2) 100%
  );
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(153, 255, 51, 0.2);
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.contact-methods {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-method h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-method p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.contact-link {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-purple);
}

.process-preview {
  margin-top: 60px;
}

.process-preview h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.process-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.process-steps li {
  counter-increment: step-counter;
  padding-left: 40px;
  position: relative;
  margin-bottom: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.process-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-purple) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

/* Contact Form */
.form-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 48px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.form-card h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.form-group label {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  background: rgba(255, 255, 255, 0.08);
}

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

.form-submit {
  align-self: flex-start;
  padding: 16px 32px;
  background: linear-gradient(
    135deg,
    rgba(153, 255, 51, 0.1) 0%,
    rgba(152, 135, 255, 0.1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.form-submit:hover {
  background: linear-gradient(
    135deg,
    rgba(153, 255, 51, 0.2) 0%,
    rgba(152, 135, 255, 0.2) 100%
  );
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(153, 255, 51, 0.2);
}

/* FAQ Preview */
.faq-preview {
  margin-top: 80px;
}

.quick-faqs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.quick-faq {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.quick-faq h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.quick-faq p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Updates for Pages */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .quick-faqs {
    grid-template-columns: 1fr;
  }
}

/* Legal Pages - Privacy & Terms */
.legal-content-section {
  background: #000000;
  padding: 80px 40px 120px;
}

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

.legal-intro {
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
  margin-bottom: 60px;
}

.legal-section h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.legal-section p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.legal-section li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.legal-section li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-green);
}

.contact-info {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info strong {
  color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title span,
.hero-subtitle,
.view-pricing-btn {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.hero-title span:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-title span:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-title span:nth-child(3) {
  animation-delay: 0.3s;
}
.hero-subtitle {
  animation-delay: 0.4s;
}

/* Blog Page Styles */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Blog Hero Section */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 40px 120px;
  overflow: hidden;
  background: #000000;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at top center,
    rgba(152, 135, 255, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(60px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-purple);
  top: -200px;
  left: -200px;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-green);
  bottom: -150px;
  right: -150px;
  animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--primary-purple);
  top: 50%;
  right: 10%;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #ffffff;
  text-align: center;
}

.heading-highlight {
  color: var(--primary-green);
  font-weight: 700;
}

.subheading {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Section Styles */
.section {
  padding: 80px 40px;
  background: #000000;
  position: relative;
}

.section-dark {
  background: rgba(255, 255, 255, 0.01);
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Grid for Blog - Medium Style Article */
.section .pricing-grid:not(.pricing-grid.mvp-card):not(.pricing-grid.retainer-card) {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.section .pricing-card:not(.mvp-card):not(.retainer-card) {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 36px;
  position: relative;
  overflow: visible;
  display: block;
}

.section .pricing-card:not(.mvp-card):not(.retainer-card)::before {
  display: none;
}

.section .pricing-card:not(.mvp-card):not(.retainer-card):hover {
  background: transparent;
  border-color: transparent;
  transform: none;
}

.section .pricing-card:not(.mvp-card):not(.retainer-card):hover::before {
  opacity: 0;
}

.section .pricing-card:not(.mvp-card):not(.retainer-card) h3 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.section .price-tag {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  margin-left: 0;
}

.section .price-description {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.section .price-description strong {
  color: #ffffff;
  font-weight: 600;
}

/* Blog Page Button Styling - Only for blog page cards */
.section .pricing-card:not(.mvp-card):not(.retainer-card) .cta-primary {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  padding: 16px 24px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  background: var(--primary-green) !important;
  color: #000000 !important;
  z-index: 10;
  position: relative;
}

/* Shadow Effects */
.neo-shadow {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modern-shadow {
  box-shadow: 0 4px 20px rgba(153, 255, 51, 0.2);
}

/* CTA Buttons */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary-green);
  color: #000000 !important;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  z-index: 10;
  position: relative;
}

.cta-primary:hover {
  background: #88e62e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(153, 255, 51, 0.3);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Final CTA Section */
.final-cta {
  padding: 120px 40px;
  background: linear-gradient(
    135deg,
    rgba(152, 135, 255, 0.1) 0%,
    rgba(153, 255, 51, 0.05) 100%
  );
  text-align: center;
}

.cta-container {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
  .hero {
    padding: 140px 20px 80px;
    min-height: 50vh;
  }

  .section {
    padding: 80px 20px;
  }

  .container {
    padding: 0 20px;
  }

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

  .pricing-card {
    padding: 32px 24px;
  }

  .cta-container {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Blog Content Styles - Medium.com Style */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.features-grid .feature {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 36px;
  position: relative;
}

.features-grid .feature:last-child {
  margin-bottom: 0;
}

.features-grid .feature h3 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
  color: #ffffff;
  line-height: 1.4;
  text-align: left;
  letter-spacing: -0.01em;
}

.features-grid .feature p {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px 0;
  text-align: left;
}

.features-grid .feature p:last-child {
  margin-bottom: 0;
}

.features-grid .feature p strong {
  color: #ffffff;
  font-weight: 600;
}

/* Process Grid for Blog - Medium Style */
.section .process-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.section .process-step {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 36px;
  position: relative;
  text-align: left;
}

.section .process-step:last-child {
  margin-bottom: 0;
}

.section .process-step .step-number {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 12px;
  display: block;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section .process-step h3 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
  color: #ffffff;
  line-height: 1.4;
  text-align: left;
  letter-spacing: -0.01em;
}

.section .process-step p {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-align: left;
}

.section .process-step p strong {
  color: #ffffff;
  font-weight: 600;
}

/* Blog Content Typography - Medium Style */
.section .container > p,
.section .container > ul,
.section .container > ol {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: -0.003em;
}

.section .container > p:first-of-type {
  margin-top: 0;
}

.section .container > p:last-of-type {
  margin-bottom: 0;
}

.section .container ul,
.section .container ol {
  padding-left: 32px;
  margin-bottom: 24px;
}

.section .container li {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
}

.section .container li:last-child {
  margin-bottom: 0;
}

/* Content headings inside sections (not section-title) */
.section .container > h2:not(.section-title),
.section .container h3:not(.section-title),
.section .container h4:not(.section-title) {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.section .container > h2:not(.section-title) {
  font-family: "Inter", sans-serif;
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section .container > h2:not(.section-title):first-of-type {
  margin-top: 0;
}

.section .container h3:not(.section-title) {
  font-family: "Inter", sans-serif;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section .container h4:not(.section-title) {
  font-family: "Inter", sans-serif;
  font-size: clamp(20px, 2.5vw, 22px);
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section .container strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.section .container a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.section .container a:hover {
  color: #88e62e;
  text-decoration: underline;
}

/* Blog Content Blocks - Medium Style */
.section .container blockquote {
  max-width: 680px;
  margin: 32px auto;
  padding: 0;
  background: transparent;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.7;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}

.section .container hr {
  max-width: 680px;
  margin: 64px auto;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Responsive Blog Content */
@media (max-width: 768px) {
  .features-grid {
    gap: 0;
  }

  .features-grid .feature {
    margin-bottom: 40px;
  }

  .features-grid .feature h3 {
    font-size: 20px;
  }

  .features-grid .feature p {
    font-size: 16px;
  }

  .section .process-grid {
    gap: 0;
  }

  .section .process-step {
    margin-bottom: 32px;
  }

  .section .process-step h3 {
    font-size: 20px;
  }

  .section .process-step p {
    font-size: 16px;
  }

  .section .pricing-grid:not(.pricing-grid.mvp-card):not(.pricing-grid.retainer-card) {
    gap: 0;
  }

  .section .pricing-card:not(.mvp-card):not(.retainer-card) {
    margin-bottom: 32px;
  }

  .section .pricing-card:not(.mvp-card):not(.retainer-card) h3 {
    font-size: 20px;
  }

  .section .price-description {
    font-size: 16px;
  }

  .section .container > p,
  .section .container > ul,
  .section .container > ol {
    font-size: 16px;
    padding: 0 20px;
  }

  .section .container h2 {
    font-size: 24px;
    padding: 0 20px;
  }

  .section .container h3 {
    font-size: 20px;
    padding: 0 20px;
  }

  .section .container h4 {
    font-size: 18px;
    padding: 0 20px;
  }

  .section .container blockquote {
    padding: 20px 24px;
    margin: 24px 20px;
    font-size: 16px;
  }
}
