:root {
  /* Colors */
  --primary-blue: #367dfa;
  --accent-orange: #ff4000;
  --dark: #1d1d1f;
  --white: #ffffff;
  --light-gray: #f5f5f7;
  --light-blue: #f1f3fb;
  --gradient-blue: linear-gradient(180deg, #ffffff 0%, #c9dee2 100%);
  --gradient-text: linear-gradient(
    180deg,
    rgba(93, 142, 246, 0.5) -9.36%,
    #5d8ef6 88.51%
  );

  /* Typography */
  --font-display: "DM Serif Display", serif;
  --font-body: "Archivo", sans-serif;
  --font-mono: "Space Mono", monospace;

  /* Spacing */
  --container-max: 1400px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  --spacing-2xl: 96px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 950px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0a0a1a;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(54, 125, 250, 0.4) 1px,
    transparent 1px
  );
  background-size: 8px 8px;
  background-position: 0 0;
  animation: dotMove 20s linear infinite;
}

@keyframes dotMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 8px 8px;
  }
}

/* Navbar */
.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  animation: slideDown 0.8s ease-out;
}

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

.logo {
  width: 74px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 37px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(-5deg);
}

.logo-icon {
  width: 30px;
  height: 31px;
  background: var(--white);
  border-radius: 4px;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-xs);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 37px;
  padding: var(--spacing-sm) var(--spacing-md);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
  padding: 8px 12px;
  border-radius: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.nav-link.active {
  background: #000000;
}

.nav-link:not(.active):hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.hero-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(60px, 10vw, 155px);
  line-height: 1.05;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: var(--spacing-lg);
  animation: fadeInScale 1s ease-out 0.3s both;
  text-transform: uppercase;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.floating-cube {
  width: 280px;
  height: 300px;
  position: relative;
  margin: var(--spacing-xl) 0;
  animation: float 6s ease-in-out infinite;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.cube-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(30deg);
  animation: rotateCube 10s linear infinite;
}

.cube-inner::before,
.cube-inner::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: linear-gradient(
    135deg,
    rgba(54, 125, 250, 0.8) 0%,
    rgba(100, 180, 255, 0.6) 50%,
    rgba(54, 125, 250, 0.9) 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 40px rgba(54, 125, 250, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.cube-inner::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(0deg) translateZ(90px);
}

.cube-inner::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(90deg) translateZ(90px);
}

@keyframes rotateCube {
  0% {
    transform: rotateX(-20deg) rotateY(30deg);
  }
  100% {
    transform: rotateX(-20deg) rotateY(390deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateZ(0);
  }
  50% {
    transform: translateY(-20px) translateZ(20px);
  }
}

.hero-bottom {
  display: flex;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  max-width: 1200px;
  width: 100%;
  margin-top: var(--spacing-xl);
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.hero-description {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--white);
  text-transform: capitalize;
}

.cta-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-link:hover {
  transform: translateX(10px);
}

.cta-link-orange span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: #ff4000;
  text-transform: capitalize;
  letter-spacing: normal;
  border-bottom: 1px solid #ff4000;
}

.cta-dark span {
  color: var(--accent-orange);
}

.cta-orange span {
  color: var(--accent-orange);
}

.arrow-icon {
  width: 32px;
  height: 24px;
  background: var(--white);
  clip-path: polygon(0 50%, 70% 50%, 70% 20%, 100% 50%, 70% 80%, 70% 50%);
  transform: rotate(-27deg);
  transition: transform 0.3s ease;
}

.arrow-icon-orange {
  width: 32px;
  height: 24px;
  background: var(--accent-orange);
  clip-path: polygon(0 50%, 70% 50%, 70% 20%, 100% 50%, 70% 80%, 70% 50%);
  transform: rotate(-27deg);
  transition: transform 0.3s ease;
}

.cta-link:hover .arrow-icon,
.cta-link-orange:hover .arrow-icon-orange {
  transform: rotate(-27deg) translateX(5px);
}

.cta-dark .arrow-icon,
.cta-orange .arrow-icon {
  background: var(--accent-orange);
}


/* Banner Section */
.banner-section {
  position: relative;
  width: 100%;
  height: 950px;
  overflow: hidden;
  background: #f5f5f7;
}

.banner-size-indicator {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(54, 125, 250, 0.9);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(54, 125, 250, 0.3);
}

.banner-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) brightness(0.95);
}

.banner-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 245, 247, 0.3) 0%,
    rgba(245, 245, 247, 0) 30%,
    rgba(245, 245, 247, 0) 70%,
    rgba(245, 245, 247, 0.3) 100%
  );
  pointer-events: none;
}

/* ELEVATE YOUR DIGITAL IMPACT Section - Matching Uploaded Image */
/* ELEVATE YOUR DIGITAL IMPACT Section */
.elevate-impact-section {
  padding: 120px 60px 120px 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.elevate-row-1,
.elevate-row-2 {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.elevate-small-image {
  width: 320px;
  height: 160px;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}

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

.elevate-text,
.digital-text,
.impact-text {
  font-family: var(--font-body); /* Using Archivo as requested/available */
  font-weight: 500; /* Matching visual weight */
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin: 0;
  text-transform: uppercase;
}

.three-images-group {
  display: flex;
  gap: 10px;
}

.three-images-group img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 2px;
}

.elevate-content-section {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.content-spacer {
  width: 350px; /* Spacer to push text to the right */
  flex-shrink: 0;
}

.content-right {
  flex: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.about-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.2;
  color: var(--dark);
}

.outstanding-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.bottom-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.bottom-gallery img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 0; /* Reference images look sharp/square or slightly rounded */
}

/* Responsive */
@media (max-width: 1024px) {
  .elevate-row-1,
  .elevate-row-2 {
    gap: 20px;
  }

  .content-spacer {
    display: none;
  }

  .elevate-small-image {
    width: 200px;
    height: 120px;
  }

  .three-images-group img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .elevate-text,
  .digital-text,
  .impact-text {
    font-size: 48px;
  }

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

  .bottom-gallery img {
    height: 300px;
  }
}

/* Works Section */
.works-section {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
}

.section-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: var(--spacing-xl);
}

.section-title.centered {
  text-align: center;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.work-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.work-large .work-image {
  height: 500px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.work-tall .work-image {
  height: 697px;
  /* background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); */
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.work-item:hover .work-image {
  transform: scale(1.02);
}

.view-project-btn {
  padding: 10px var(--spacing-md);
  background: var(--dark);
  color: var(--accent-orange);
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-project-btn:hover {
  background: var(--accent-orange);
  color: var(--white);
  transform: scale(1.05);
}

.work-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 32px;
  color: var(--dark);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  text-decoration: none;
  float: right;
  transition: transform 0.3s ease;
}

.view-all-link:hover {
  transform: translateX(10px);
}

.view-all-link span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--accent-orange);
  text-transform: capitalize;
  border-bottom: 1px solid var(--accent-orange);
}

/* AI Section */
.ai-section {
  position: relative;
  min-height: 962px;
  background: linear-gradient(180deg, #ffffff 0%, #c9dee2 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 100px;
}

.ai-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 714px;
  height: 714px;
  background: #6ed9ed;
  opacity: 0.2;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.orb-2 {
  width: 1370px;
  height: 1141px;
  background: radial-gradient(
    circle,
    rgba(110, 217, 237, 0.3) 0%,
    transparent 70%
  );
  opacity: 0.7;
  bottom: -400px;
  right: -200px;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.noise-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px
    );
  opacity: 0.4;
}

.decorative-lines {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  transform: rotate(-30deg);
}

.ai-content {
  position: relative;
  z-index: 5;
  width: 100%;
  text-align: center;
  flex: 1;
}

.ai-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.05;
  color: #1d1d1f;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

.text-orange {
  color: #ff4000;
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
  color: #1d1d1f;
}

.ai-visual {
  position: relative;
  z-index: 5;
  margin-top: -20px;
  display: flex;
  justify-content: center;
}

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

.phone-mockup {
  width: min(434px, 90vw);
  height: min(553px, 120vw);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  border-radius: 40px;
  border: 8px solid rgba(0, 0, 0, 0.1);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
}

.ai-bottom-bar {
  width: 100%;
  background: #f5f5f7;
  padding: 64px 0;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.ai-description-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1281px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

@media (max-width: 1300px) {
  .ai-description-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
}

.ai-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #1d1d1f;
  text-align: left;
  max-width: 793px;
}

@media (max-width: 1300px) {
  .ai-description {
    text-align: center;
  }
}

/* Why Choose Section */
.why-choose-section {
  padding: 100px 20px;
  background: #f5f5f7;
  width: 100%;
}

.why-header {
  font-size: 64px;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 56px;
  color: #1d1d1f;
  text-align: center;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.feature-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.feature-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Column 1: Tall Dark Card */
.feature-tall-dark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 0;
  gap: 72px;
  height: 766px;
  background: linear-gradient(
    180deg,
    #c8b5e8 0%,
    #bda8e0 10%,
    #b39cd8 20%,
    #a890d0 30%,
    #9d84c8 40%,
    #9278c0 50%,
    #876cb8 60%,
    #7c60b0 70%,
    #7154a8 80%,
    #6648a0 90%,
    #5b3c98 100%
  );
  position: relative;
  overflow: hidden;
}

/* Stars/sparkles effect */
.feature-tall-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.8) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.6) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 50%,
      rgba(255, 255, 255, 0.4) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 60% 70%,
      rgba(255, 255, 255, 0.7) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 90% 60%,
      rgba(255, 255, 255, 0.5) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(255, 255, 255, 0.6) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 70% 40%,
      rgba(255, 255, 255, 0.4) 1px,
      transparent 1px
    );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.feature-tall-dark .feature-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 105%;
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.full-height-img {
  width: 502px;
  height: 646px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.full-height-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Column 2 */
.col-2 .feature-light.text-card {
  height: 308px;
  background: #f1f3fb;
  padding: 40px 24px;
  justify-content: flex-start;
  gap: 16px;
}

.col-2 .feature-light.image-card {
  height: 436px;
  background: #f1f3fb;
  padding: 0 0 40px 0;
}

.col-2 .feature-light.image-card .feature-image-wrapper {
  width: 100%;
  height: 258px;
  overflow: hidden;
  margin-bottom: 16px;
}

.col-2 .feature-light.image-card .feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.col-2 .feature-light.image-card .card-content {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Column 3 - Phone Card */
.feature-phone-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 766px;
    display: flex;
    flex-direction: column;
}

.phone-card-top {
    background: linear-gradient(180deg, 
        #D4C5F0 0%,
        #C8B8E8 10%,
        #B8A5E0 20%,
        #A892D8 30%,
        #987FD0 40%,
        #886CC8 50%,
        #7859C0 60%,
        #6846B8 70%,
        #5833B0 80%,
        #4820A8 90%,
        #380DA0 100%
    );
    padding: 40px 24px 60px;
    position: relative;
    flex: 1;
}

/* Stars/sparkles effect for phone card */
.phone-card-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 35% 40%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 65% 60%, rgba(255, 255, 255, 0.7) 1px, transparent 1px),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}

.phone-card-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.phone-card-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #FFFFFF;
    opacity: 0.95;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.phone-mockup-wrapper {
    width: 240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.phone-frame {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

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

.phone-card-bottom {
    background: #F8F9FA;
    padding: 40px 24px;
}

.bottom-card-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.bottom-card-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Common Text Styles */
.feature-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.05;
  color: #1d1d1f;
}

.feature-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #1d1d1f;
}

.text-white {
  color: #ffffff !important;
}

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

/* Responsive */
@media (max-width: 1200px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-col {
    width: 100%;
    max-width: 600px;
  }

  .feature-tall-dark,
  .feature-phone-card,
  .col-2 .feature-light.image-card,
  .col-2 .feature-light.text-card,
  .small-card {
    height: auto;
    min-height: 300px;
  }

  .full-height-img {
    height: 500px;
  }

  .phone-mockup-wrapper {
    width: 200px;
  }
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
}

.cta-content {
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.cta-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  color: var(--dark);
}

.cta-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.05;
  color: var(--dark);
  opacity: 0.8;
}

.cta-logo {
  position: relative;
  padding: var(--spacing-2xl);
}

.cta-logo-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(80px, 10vw, 162px);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.cta-logo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(93, 142, 246, 0.2) 0%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Footer */
.footer {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
}

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

.footer-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: var(--spacing-lg);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(29, 29, 31, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-5px);
}

.social-link svg {
  width: 26px;
  height: 26px;
  color: rgba(29, 29, 31, 0.9);
  transition: color 0.3s ease;
}

.social-link:hover svg {
  color: var(--white);
}

.footer-copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--dark);
}

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

  .elevate-content-section {
    flex-direction: column;
  }

  .content-spacer {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .hero-bottom {
    flex-direction: column;
    text-align: center;
  }

  .elevate-row-1,
  .elevate-row-2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .elevate-small-image {
    width: 100%;
  }

  .three-images-group {
    width: 100%;
    justify-content: space-between;
  }

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

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

  .footer-content {
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    text-align: center;
  }
}

/* Services Section */
.services-section {
  padding: var(--spacing-2xl) 0;
  position: relative;
  background: var(--white);
}

.services-header {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: var(--spacing-xl);
}

.text-italic-orange {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-orange);
  font-weight: 400; /* Lora is usually lighter in display */
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.service-number-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 88px;
  flex-shrink: 0;
}

.service-meta {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.05;
  text-align: center;
  color: var(--dark);
}

.service-number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.05;
  color: var(--accent-orange);
}

.service-info-col {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
}

.service-title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-icon {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--accent-orange);
  border-left: 1px solid var(--accent-orange);
}

.service-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.05;
  color: var(--dark);
  margin: 0;
}

.service-desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  color: var(--dark);
  max-width: 450px;
}

.services-bottom {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.services-nav-col {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 437px;
  padding-bottom: 30px; /* Align visually with bottom of image */
}

/* On mobile, stack nav */
@media (max-width: 600px) {
  .services-nav-col {
    max-width: 100%;
    gap: 20px;
  }
}

.nav-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-group .nav-label-row {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  color: var(--dark);
}

.nav-group .nav-value {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.05;
  color: var(--dark);
}

.service-image-wrapper {
  flex: 1;
  min-width: 300px;
  height: 400px; /* Approximately 369px */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Alternating Services Layout */
.services-container {
  margin-bottom: 120px;
}

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

/* Reverse layout for even items */
.service-reverse .services-top {
  flex-direction: row-reverse;
}

.service-reverse .services-bottom {
  flex-direction: row-reverse;
}

.service-reverse .service-number-col {
  align-items: flex-end; /* Align numbers to right */
}

.service-reverse .service-info-col {
  justify-content: flex-end; /* Push title block to right side within this col if needed, but flex-direction: row-reverse handles main swap */
}

/* Adjust title wrapper in reverse */
.service-reverse .service-title-wrapper {
  flex-direction: row-reverse; /* Icon on right of title */
}

/* Icon rotation/adjustment for reverse if needed */
.service-reverse .service-icon {
  /* Maybe flip border? */
  border-left: none;
  border-right: 1px solid var(--accent-orange);
}

/* Adjust Nav Col alignment in reverse */
.service-reverse .services-nav-col {
  /* In reverse layout, Nav is on Right, Image on Left.
       The Services-Nav-Col itself needs modification?
       Originally: Nav (Left), Image (Right).
       Reversed: Image (Left), Nav (Right).
    */
  /* The flex-direction of services-bottom swaps the Image and Nav Col positions.
       So Nav Col is now on the right side.
    */
  text-align: right;
  align-items: flex-end;
}

/* Inner alignment of nav groups in reverse */
.service-reverse .nav-group {
  align-items: flex-end;
}

.service-reverse .nav-label-row {
  flex-direction: row-reverse;
}

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

/* About Page - Additional Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;1,400;1,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* About Page - Logo Container */
.logo-container {
    background: rgba(137, 137, 137, 0.2);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 37px;
    margin-right: 0;
}

.nav-links {
    background: rgba(137, 137, 137, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 37px;
    padding: 16px 24px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link:not(.active) {
    background: rgba(164, 164, 164, 0.2);
}

/* About Page - Hero Section Specific */
.hero-subtitle {
    display: flex;
    justify-content: space-between;
    width: 373px;
    font-style: italic;
    font-size: 18px;
    color: var(--white);
}

.hero-house {
    position: absolute;
    right: 391px;
    top: 571px;
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 90px;
    color: var(--white);
    animation: fadeIn 1.2s ease-out 0.6s both;
    z-index: 1;
}

/* Vision Mission Section */
.vision-mission {
    position: relative;
    width: 100%;
    height: 850px;
    background-size: cover;
    background-position: center;
}

.card {
    position: absolute;
    width: 570px;
    padding: 48px 29px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(29.85px);
    animation: fadeIn 1s ease-out both;
}

.vision-card {
    right: 128px;
    top: 127px;
    animation-delay: 0.2s;
}

.mission-card {
    right: 128px;
    top: 561px;
    animation-delay: 0.4s;
}

.card-number {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 46px;
    line-height: 105%;
    color: var(--accent-orange);
    padding-bottom: 10px;
    border-bottom: 0.5px solid #B1B1B1;
    margin-bottom: 24px;
}

.card-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 105%;
    color: #1E1E1E;
    margin-bottom: 16px;
}

.card-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #1E1E1E;
}

/* Team Section */
.team-section {
    padding: 120px 40px 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #C9DEE2 100%);
    max-width: 100%;
}

.team-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1360px;
    margin: 0 auto;
}

.team-quote {
    max-width: 841px;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 46px;
    line-height: 120%;
    color: var(--accent-orange);
    margin: 0;
    animation: fadeIn 1s ease-out 0.3s both;
}

.team-quote .fueled {
    font-style: italic;
    color: var(--accent-orange);
}

.team-description {
    display: flex;
    justify-content: space-between;
    gap: 284px;
    max-width: 1360px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    animation: fadeInLeft 0.8s ease-out both;
}

.team-desc-left {
    flex: 0 0 auto;
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.team-desc-right {
    flex: 1;
    max-width: 698px;
    font-size: 22px;
    line-height: 105%;
    color: #1D1D1F;
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.team-desc-right p {
    font-size: 22px;
    line-height: 105%;
    color: #1D1D1F;
    margin: 0;
}

/* Story Section */
.story-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, #C9DEE2 100%);
    position: relative;
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 95px;
    max-width: 1359px;
    margin: 0 auto;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 860px;
}

.story-title {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 80px;
    line-height: 120%;
    color: var(--accent-orange);
    font-weight: 400;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 21px;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 31px;
    position: relative;
    flex: 1;
    max-width: 439px;
    animation: fadeInUp 0.8s ease-out both;
}

.timeline-item:nth-child(1) { 
    animation-delay: 0.2s;
    align-items: flex-end;
}
.timeline-item:nth-child(2) { 
    animation-delay: 0.4s;
    align-items: flex-start;
}
.timeline-item:nth-child(3) { 
    animation-delay: 0.6s;
    align-items: flex-end;
}

.timeline-diamond-wrapper {
    position: relative;
    width: 31.11px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item:nth-child(1) .timeline-diamond-wrapper {
    height: 296.5px;
}

.timeline-item:nth-child(2) .timeline-diamond-wrapper {
    height: 303px;
}

.timeline-item:nth-child(3) .timeline-diamond-wrapper {
    height: 296.5px;
}

.timeline-diamond {
    width: 22px;
    height: 22px;
    background: transparent;
    border: 1px solid #00D1FF;
    transform: rotate(-45.9deg);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-line {
    display: block;
    width: 1px;
    flex: 1;
    background: #ADADAD;
    margin-top: 6.5px;
}

.timeline-item:nth-child(2) .timeline-line {
    margin-top: 13px;
}

.timeline-content {
    max-width: 290px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.timeline-year {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 46px;
    line-height: 120%;
    color: var(--dark);
    margin: 0;
    font-weight: 400;
}

.timeline-text {
    font-size: 16px;
    line-height: 150%;
    color: #1D1D1F;
    opacity: 0.8;
    margin: 0;
}

/* Core Values */
.values-section {
    padding: 55px 40px;
    background: var(--light-gray);
}

.values-title {
    font-weight: 700;
    font-size: 64px;
    line-height: 105%;
    text-transform: lowercase;
    margin-bottom: 56px;
    animation: fadeIn 0.8s ease-out both;
    max-width: 1360px;
    margin-left: 0;
}

.values-title .orange {
    color: var(--accent-orange);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 1360px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    padding-top: 12px;
    border-top: 0.5px solid rgba(29, 29, 31, 0.5);
    animation: fadeInUp 0.8s ease-out both;
}

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

.value-image {
    width: 208px;
    height: 336px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: 22px;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.value-number {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 46px;
    line-height: 105%;
    color: var(--dark);
    flex-shrink: 0;
    min-width: 52px;
    margin-right: 160px;
}

.value-name {
    font-weight: 500;
    font-size: 32px;
    line-height: 105%;
    margin: 0;
    flex-shrink: 0;
    margin-right: 190px;
}

.value-description {
    font-size: 18px;
    line-height: 105%;
    margin: 0;
    max-width: 360px;
    flex-shrink: 0;
}

/* About Page CTA Specific */
.cta-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 24px;
    line-height: 105%;
    color: #FFFFFF;
    margin: 0;
    animation: fadeIn 1s ease-out both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-button-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    line-height: 135%;
    text-transform: capitalize;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-underline {
    width: 29px;
    height: 0px;
    border: 1px solid #FF4000;
}

.cta-button-text:hover {
    transform: translateX(5px);
}

.cta-arrow {
    width: 32px;
    height: 23.68px;
    transform: rotate(-27.4deg);
}

/* Footer CTA */
.footer-cta {
    padding: 78px 44px;
    background: linear-gradient(180deg, var(--white) 0%, #C9DEE2 100%);
    text-align: center;
}

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

.footer-title {
    font-weight: 700;
    font-size: 46px;
    line-height: 105%;
    margin-bottom: 24px;
    animation: fadeIn 0.8s ease-out both;
}

.footer-subtitle {
    font-size: 20px;
    line-height: 105%;
    opacity: 0.8;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 89px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.footer-button-text {
    font-weight: 500;
    font-size: 18px;
    color: var(--accent-orange);
    border-bottom: 1px solid var(--accent-orange);
    padding-bottom: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-button-text:hover {
    transform: translateY(-2px);
}

.footer-logo-text {
    font-size: 162px;
    background: linear-gradient(180deg, rgba(93, 142, 246, 0.5) -9.36%, #5D8EF6 88.51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* About Page Footer Specific */
.social-section {
    animation: fadeInLeft 0.8s ease-out both;
}

.social-title {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 32px;
}

.copyright {
    font-size: 20px;
    text-transform: uppercase;
    animation: fadeInRight 0.8s ease-out both;
}

/* About Page Responsive */
@media (max-width: 1440px) {
    .vision-card,
    .mission-card {
        right: 20px;
    }
    
    .timeline {
        flex-wrap: wrap;
    }
    
    .value-item {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .card {
        width: calc(100% - 40px);
        right: 20px !important;
    }
    
    .team-quote {
        font-size: 32px;
    }
    
    .story-title {
        font-size: 48px;
    }
    
    .values-title {
        font-size: 40px;
    }
    
    .footer-logo-text {
        font-size: 80px;
    }
}