/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Schibsted+Grotesk:wght@400;500;600;700;800;900&display=swap");

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

/* Neue Kaine Variable Font */
@font-face {
  font-family: "Neue Kaine";
  src: url("../fonts/neue-kaine-variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

: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: "Space Grotesk", "DM Serif Display", serif;
  --font-lora: "Lora", "DM Serif Display", serif;
  --font-schibsted: "Schibsted Grotesk", serif;
  --font-body: "Neue Kaine", "Neue Kaine", 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;
  animation: pageLoad 0.6s ease-out;
}

/* Page Load Animation */
@keyframes pageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Cinematic Page Transition Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #367dfa 100%);
  z-index: 99999;
  pointer-events: none;
  animation: cinematicReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

body::after {
  content: "HUB INTERFACE";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: white;
  z-index: 999999;
  pointer-events: none;
  text-shadow: 0 0 30px rgba(54, 125, 250, 0.8);
  animation: logoFadeOut 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  letter-spacing: 0.1em;
}

@keyframes cinematicReveal {
  0% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }
}

@keyframes logoFadeOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

.services-section .container {
  padding: 0;
}

/* Hero Section - Cinematic Tech-Noir */
.hero {
  position: relative;
  width: 100%;
  height: 950px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #000; /* Dark background for video */
}

/* Hero Overlay - Blue Tint */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #367dfa;
  mix-blend-mode: color;
  z-index: 1;
  pointer-events: none;
}

/* Blue Line crossing the screen */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #367dfa;
  top: 50%; /* Approx position based on image, crossing 'HUB INTERFACE' */
  left: 0;
  z-index: 6; /* On top of title, behind cube maybe? Cube is z-4. Title is z-5. */
  box-shadow: 0 0 10px #367dfa;
}

/* Glowing Orb 1 - Tech Aesthetic */
.hero-video::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(54, 125, 250, 0.3) 0%,
    rgba(54, 125, 250, 0) 60%
  );
  top: -300px;
  left: -200px;
  z-index: 1;
  animation: glowPulse1 8s ease-in-out infinite;
  pointer-events: none;
  filter: blur(60px);
}

@keyframes glowPulse1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(50px, 50px) scale(1.2);
    opacity: 0.8;
  }
}

/* Glowing Orb 2 - Orange Accent */
.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 64, 0, 0.25) 0%,
    rgba(255, 64, 0, 0) 60%
  );
  bottom: -200px;
  right: -150px;
  z-index: 1;
  animation: glowPulse2 10s ease-in-out infinite;
  pointer-events: none;
  filter: blur(80px);
}

@keyframes glowPulse2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-60px, -40px) scale(1.3);
    opacity: 0.7;
  }
}

/* Halftone Video Background - Visible with Tech Overlay */
/* Halftone Video Background */
.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  object-fit: cover;
  z-index: 0;
  opacity: 1; /* Full opacity to show pattern clearly */
}

/* Navbar Container - Frame 1686560570 */
.navbar {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  position: absolute;
  width: 466px;
  height: 64px;
  left: calc(50% - 466px / 2 - 0.5px);
  top: 41px;
  z-index: 10;
  gap: 0;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.2s forwards;
}

/* Logo Container - Frame 3 */
.logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  gap: 230px;
  width: 74px;
  height: 63px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 37px;
  flex: none;
  order: 0;
  flex-grow: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Logo Image */
.logo img {
  width: 29.83px;
  height: 31px;
  margin: 0 auto;
}

/* Navigation Menu - Frame 4 */
.nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 24px;
  gap: 4px;
  width: 392px;
  height: 64px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 37px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Navigation Links - Enhanced */
.nav-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  font-family: "Inter", "Neue Kaine", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: none;
}

.nav-link.active {
  background: rgba(0, 0, 0, 0.8);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-link:not(.active):hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Content Container */
.hero-content {
  position: relative;
  /* z-index: 5; Removed to allow children to stack with outside elements */
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allow clicks to pass through empty areas if needed */
}

/* Enable pointer events for children */
.hero-title,
.floating-cube,
.hero-bottom {
  pointer-events: auto;
}

/* Hero Title - Cinematic Reveal */
.hero-title {
  position: absolute;
  width: 1348px;
  height: 163px;
  left: calc(50% - 1348px / 2);
  top: 312px;
  font-family: "Neue Kaine", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 155.538px;
  line-height: 105%;
  color: #ffffff;
  text-align: center;
  margin: 0;
  z-index: 5;
  text-shadow:
    0 0 20px rgba(54, 125, 250, 0.5),
    0 0 40px rgba(54, 125, 250, 0.3),
    0 4px 30px rgba(0, 0, 0, 0.5);
  animation: titleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  letter-spacing: -0.03em;
  opacity: 0;
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

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

/* 3D Glass Cube - Cinematic */
.floating-cube {
  position: absolute;
  width: 303.05px;
  height: 320.37px;
  left: calc(50% - 151.5px);
  top: 360px;
  z-index: 20; /* High z-index to be on top of everything */
  perspective: 1000px;
  /* animation: floatCubeCinematic 8s ease-in-out infinite; */
  filter: drop-shadow(0 30px 80px rgba(54, 125, 250, 0.6));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cube:hover {
  animation-play-state: paused;
  transform: scale(1.15) rotateY(20deg);
  filter: drop-shadow(0 40px 100px rgba(54, 125, 250, 0.8));
}

@keyframes floatCubeCinematic {
  0%,
  100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateY(-30px) rotateX(5deg) rotateY(90deg);
  }
  50% {
    transform: translateY(-15px) rotateX(-5deg) rotateY(180deg);
  }
  75% {
    transform: translateY(-25px) rotateX(5deg) rotateY(270deg);
  }
}

.cube-inner {
  width: 100%;
  height: 100%;
  background: url("../images/hero/cube.png") no-repeat center center;
  background-size: contain;
  /* animation: rotateCubeGlass 15s linear infinite; */
  transform-style: preserve-3d;
  filter: brightness(1.3) contrast(1.1);
  opacity: 0.9;
}

@keyframes rotateCubeGlass {
  0% {
    transform: rotateY(0deg) rotateX(0deg);
    filter: brightness(1.3) contrast(1.1) hue-rotate(0deg);
  }
  50% {
    transform: rotateY(180deg) rotateX(10deg);
    filter: brightness(1.5) contrast(1.2) hue-rotate(20deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(0deg);
    filter: brightness(1.3) contrast(1.1) hue-rotate(0deg);
  }
}

/* Responsive Styles for Hero */
@media (max-width: 1440px) {
  .hero {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(80px, 10vw, 155.538px);
    width: 90%;
    left: 5%;
  }

  .hero-bottom {
    width: 90%;
    left: 5%;
    gap: clamp(40px, 10vw, 758px);
  }

  .hero-description {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 90%;
    left: 5%;
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .nav-menu {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(40px, 8vw, 80px);
    top: 200px;
  }

  .floating-cube {
    width: 200px;
    height: 220px;
    top: 280px;
  }

  .hero-bottom {
    flex-direction: column;
    gap: 20px;
    height: auto;
    top: 550px;
    align-items: flex-start;
  }
}

/* Hero Bottom Section - Frame 1686560573 */
.hero-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px 46px;
  gap: 40px;
  position: absolute;
  width: calc(100% - 92px);
  height: auto;
  left: 0;
  top: 657px;
  z-index: 3;
}

/* Hero Description - Enhanced */
.hero-description {
  width: auto;
  max-width: 414.75px;
  height: auto;
  font-family: "Neue Kaine", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: left;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.95);
  flex: 0 1 auto;
  order: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* CTA Link Container - Enhanced Button */
.cta-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 12px;
  width: auto;
  min-width: 200px;
  height: auto;
  flex: 0 0 auto;
  order: 1;
  text-decoration: none;
  /* background: rgba(255, 255, 255, 0.1); */
  /* backdrop-filter: blur(10px); */
  /* border: 2px solid rgba(255, 255, 255, 0.3); */
  /* border-radius: 50px; */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-link:hover::before {
  left: 100%;
}

/* .cta-link:hover {
  transform: translateX(10px) scale(1.05);
  background: rgba(255, 64, 0, 0.9);
  border-color: rgba(255, 64, 0, 1);
  box-shadow: 0 10px 40px rgba(255, 64, 0, 0.4);
} */

/* CTA Text - Enhanced */
.cta-link span {
  width: auto;
  height: auto;
  font-family: "Inter", "Neue Kaine", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.cta-link span .underlined {
  border-bottom: 2px solid #ff4000;
  padding-bottom: 2px;
  margin-right: 6px;
}

/* Arrow Icon */
.arrow-icon {
  width: 31px;
  height: 23px;
  flex: none;
  order: 1;
  flex-grow: 0;
  transition: transform 0.3s ease;
  opacity: 1;
}

.cta-link:hover .arrow-icon {
  transform: translateX(5px);
}

/* Orange CTA variants */
.cta-link-orange span {
  font-family: "Neue Kaine", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  color: #ff4000;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

.cta-link-orange span .underlined-orange {
  border-bottom: 2px solid #ff4000;
  padding-bottom: 2px;
  margin-right: 6px;
}

.arrow-icon-orange {
  width: 31px;
  height: 23px;
  flex: none;
  order: 1;
  flex-grow: 0;
  transition: transform 0.3s ease;
}

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

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

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

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

/* Remove animations for exact Figma match */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Scroll Animation Classes - Cinematic Fast-Paced */
.scroll-animate {
  opacity: 0;
  transform: translateY(80px);
  filter: blur(5px);
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-100px) scale(0.95);
  filter: blur(8px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0px);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(100px) scale(0.95);
  filter: blur(8px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0px);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.85);
  filter: blur(10px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-scale.animate-in {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}

/* Fast-Paced Staggered Animation Delays */
.stagger-1 {
  transition-delay: 0.05s;
}
.stagger-2 {
  transition-delay: 0.1s;
}
.stagger-3 {
  transition-delay: 0.15s;
}
.stagger-4 {
  transition-delay: 0.2s;
}
.stagger-5 {
  transition-delay: 0.25s;
}
.stagger-6 {
  transition-delay: 0.3s;
}

/* Banner Section - Cinematic Blurred Silhouettes */
.banner-section {
  position: relative;
  width: 100%;
  height: 950px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.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;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(8px) contrast(1.3) brightness(0.6) grayscale(30%);
  transform: scale(1.1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-image:hover img {
  filter: blur(6px) contrast(1.4) brightness(0.7) grayscale(20%);
  transform: scale(1.15);
}

.banner-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 39, 0.6) 0%,
    rgba(10, 14, 39, 0.3) 30%,
    rgba(10, 14, 39, 0.3) 70%,
    rgba(10, 14, 39, 0.7) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.banner-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 30%,
    rgba(54, 125, 250, 0.1) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ELEVATE YOUR DIGITAL IMPACT - Bold Cinematic Typography */
/* Frame 1686560584 - Main Container */
.elevate-impact-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 42px;
  position: relative;
  width: 100%;
  max-width: 1247px;
  margin-left: 96px;
  margin-top: 100px;
  margin-bottom: 100px;
}

/* Group 1597883030 - First Row Container */
.elevate-row-1 {
  width: 100%;
  max-width: 1150px;
  height: 171px;
  flex: none;
  order: 0;
  flex-grow: 0;
  position: relative;
}

/* image 975 - Top left profile image - Cinematic Blur */
.elevate-small-image {
  position: absolute;
  width: 280px;
  height: 135px;
  left: 0px;
  top: 0px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.elevate-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(2px) contrast(1.2) brightness(0.7);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.elevate-small-image:hover img {
  filter: grayscale(80%) blur(1px) contrast(1.3) brightness(0.8);
  transform: scale(1.05);
}

/* ELEVATE YOUR - Bold Typography */
.elevate-text {
  position: absolute;
  width: 800px;
  height: 105px;
  left: 320px;
  top: 36px;
  font-family: "Neue Kaine", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  line-height: 105%;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 0px rgba(54, 125, 250, 0.1);
}

/* Frame 1686560583 - Second Row Container */
.elevate-row-2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 41px;
  width: 100%;
  max-width: 1247px;
  height: 105px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* DIGITAL - Bold Text */
.digital-text {
  width: 406px;
  height: 105px;
  font-family: "Neue Kaine", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  line-height: 105%;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  flex: none;
  order: 0;
  flex-grow: 0;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 2px 2px 0px rgba(54, 125, 250, 0.1);
}

/* Frame 1686560582 - Three images container */
.three-images-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  width: 342px;
  height: 98px;
  flex: none;
  order: 1;
  flex-grow: 0;
  gap: 0;
}

/* image 976, 977, 978 - Three middle images - Sleek Product Reveals */
.three-images-group img {
  width: 114px;
  height: 98px;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
  object-fit: cover;
  filter: grayscale(50%) contrast(1.2) brightness(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.three-images-group img:hover {
  filter: grayscale(0%) contrast(1.3) brightness(1);
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 8px 30px rgba(54, 125, 250, 0.4);
}

.three-images-group img:nth-child(1) {
  order: 0;
}

.three-images-group img:nth-child(2) {
  order: 1;
}

.three-images-group img:nth-child(3) {
  order: 2;
}

/* IMPACT - Bold Text */
.impact-text {
  width: 417px;
  height: 105px;
  font-family: "Space Grotesk", "Neue Kaine", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  line-height: 105%;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  flex: none;
  order: 2;
  flex-grow: 0;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 2px 2px 0px rgba(54, 125, 250, 0.1);
}

/* Frame 1686560588 - Content Section Container */
.elevate-content-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0px;
  gap: 64px;
  width: 100%;
  max-width: 1396px;
  margin-top: 42px;
}

/* Frame 1686560585 - About Studio and Description Row */
.content-spacer {
  flex: 1;
}

.content-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0px;
  gap: 40px;
  width: 100%;
  max-width: 895px;
  height: auto;
  min-height: 270.75px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Hub Interface description text */
.about-description {
  width: 100%;
  max-width: 895px;
  height: auto;
  font-family: "Neue Kaine", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 135%;
  color: #1d1d1f;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.outstanding-text {
  font-family: "Neue Kaine", sans-serif;
  font-style: italic;
  font-weight: 500;
}

/* Frame 1686560572 - GET IN TOUCH Link */
.cta-link-orange {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0px;
  gap: 8px;
  width: auto;
  height: auto;
  flex: none;
  order: 1;
  flex-grow: 0;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

/* Frame 1686560571 - GET IN TOUCH text container */
.cta-link-orange span {
  width: auto;
  height: auto;
  font-family: "Neue Kaine", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #ff4000;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

/* Frame 1686560587 - Bottom Gallery (Three Large Images) */
/* Bottom Gallery Slider */
.bottom-gallery-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  margin-top: 64px;
}

.bottom-gallery {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
  gap: 24px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
}

.bottom-gallery:hover {
  animation-play-state: paused;
}

.bottom-gallery img {
  width: 600px;
  height: 420px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bottom-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(54, 125, 250, 0.2);
  z-index: 2;
}

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

/* Responsive Styles */
@media (max-width: 1400px) {
  .elevate-impact-section {
    margin-left: 24px;
    margin-right: 24px;
    max-width: calc(100% - 48px);
  }

  .elevate-row-1,
  .elevate-row-2,
  .bottom-gallery-container {
    max-width: 100%;
    width: 100%;
  }

  .elevate-text,
  .digital-text,
  .impact-text {
    font-size: clamp(60px, 7vw, 100px);
  }

  .about-description {
    width: 100%;
    max-width: 895px;
    font-size: clamp(32px, 3.5vw, 48px);
  }

  .bottom-gallery-container {
    width: 100vw;
    margin-left: -24px;
    margin-right: -24px;
  }

  .bottom-gallery img {
    width: 450px;
    height: 320px;
  }
}

@media (max-width: 1024px) {
  .elevate-row-1 {
    height: auto;
    width: 100%;
  }

  .elevate-small-image {
    position: relative;
    width: 250px;
    height: 120px;
    left: 0;
    top: 0;
    margin-bottom: 20px;
  }

  .elevate-text {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

  .elevate-row-2 {
    flex-wrap: wrap;
    height: auto;
    gap: 20px;
  }

  .three-images-group {
    width: auto;
    height: auto;
    gap: 8px;
  }

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

  .content-right {
    width: 100%;
  }
}

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

  .about-description {
    width: 100%;
    height: auto;
    font-size: 28px;
  }

  .bottom-gallery-container {
    margin-top: 40px;
  }

  .bottom-gallery img {
    width: 300px;
    height: 220px;
    border-radius: 12px;
  }
}

/* Works Section - Frame 1686560609 */
.works-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 56px;
  width: 100%;
  max-width: 1352px;
  margin: 0 auto;
  padding-inline: 44px;
  margin-top: 100px;
  margin-bottom: 100px;
}

/* Selected works - Title */
.section-title {
  font-family: 'Neue Kaine', var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 105%;
  color: #1D1D1F;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0;
}

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

/* Frame 1686560608 - Works Grid Container */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  row-gap: 64px;
  width: 100%;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  position: relative;
}

/* Work Item */
.work-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
}

/* Work Image Wrapper */
.work-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

/* Work Title */
.work-title {
  font-family: 'Neue Kaine', var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 105%;
  color: #1D1D1F;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

/* First Row - Item 1 (Left, Short) */
.works-grid > :nth-child(1) .work-image {
  height: 500px;
}

/* First Row - Item 2 (Right, Tall) */
.works-grid > :nth-child(2) .work-image {
  height: 697px;
}

/* Second Row - Item 3 (Left, Tall) */
.works-grid > :nth-child(3) .work-image {
  height: 697px;
}

/* Second Row - Item 4 (Right, Short) */
.works-grid > :nth-child(4) .work-image {
  height: 500px;
}

/* View All Link - Frame 1686560572 */
.view-all-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 8px;
  position: absolute;
  right: 0;
  bottom: 0;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

/* Frame 1686560571 - View All Text Container */
.view-all-link .view-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;
  font-family: 'Neue Kaine', var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  text-transform: capitalize;
  color: #FF4000;
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Line 60 - Underline */
.view2 {
  width: 29px;
  height: 0px;
  border-bottom: 1px solid #FF4000;
  display: inline-block;
}

/* Arrow Icon */
.view-all-link svg {
  width: 32px;
  height: 23.68px;
  transform: rotate(-27.4deg);
  flex: none;
  order: 1;
  flex-grow: 0;
}

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

.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;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.ai-title {
  padding-top: 4vh;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: #1d1d1f;
  margin-bottom: -2vh;
  position: relative;
  z-index: 10;
}

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

.ai-title .text-orange {
  font-family: var(--font-lora);
}

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

.ai-visual {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex: 1;
  width: 100%;
  min-height: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.ai-visual img {
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  /* mask-image: linear-gradient(to bottom, black 80%, transparent 100%); */
  /* -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%); */
}

.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: #ffffff;
  backdrop-filter: blur(10px);
  padding: 32px 0;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

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

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

.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;
  margin-left: -213px; /* Pull text left for alignment on large screens */
}

@media (max-width: 1600px) {
  .ai-description {
    margin-left: 0;
  }
}

@media (max-width: 1300px) {
  .ai-description {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .ai-section {
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
  }

  .ai-content {
    justify-content: flex-start;
    gap: 40px;
  }

  .ai-title {
    padding-top: 140px;
    font-size: 42px;
  }

  .ai-visual {
    flex: none;
    height: auto;
    width: 100%;
    margin-bottom: 0;
  }

  .ai-visual img {
    max-width: 80%;
    height: auto;
  }

  .ai-bottom-bar {
    position: relative;
    padding: 40px 0;
  }
}

/* Why Choose Section Refactored */
.why-us {
  width: 100%;
  background: var(--white, #fff);
  overflow: hidden; /* Prevent spill */
}

.why-us__container {
  width: 100%;
  max-width: 1600px; /* Adjust margin to align with site container */
  margin: 0 auto;
  padding-inline: 30px;
}

.why-us__heading {
  font-family: var(--font-display, "Neue Kaine", sans-serif);
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 56px;
  text-transform: lowercase;
}

/* THE GRID - 3 COLUMNS */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* Card Utilities */
.why-us__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.why-us__title {
  font-family: var(--font-body, sans-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.why-us__desc {
  font-family: var(--font-body, sans-serif);
  font-size: 18px;
  line-height: 1.5;
  color: #1d1d1f;
}

.why-us__img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- Column 1: Creative (Detailed Gradient) --- */
.why-us__card--creative {
  height: 766px;
  padding-top: 40px;
  align-items: center;
  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%
  );
}

.why-us__card--creative::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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
    );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}

.why-us__title--light {
  color: #fff;
  font-size: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-us__creative-visual {
  width: 100%;
  height: 646px;
  max-width: 502px; /* constrains image width within card */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

/* --- Column 2: Split --- */
.why-us__col-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-us__card--transparent {
  background: #f1f3fb;
  padding: 40px 24px;
  height: 308px;
}

.why-us__card--expertise {
  background: #f1f3fb;
  height: 436px;
  padding-bottom: 40px;
}

.why-us__expertise-visual {
  height: 258px;
  width: 100%;
  margin-bottom: 24px;
}

.why-us__content-box {
  padding-inline: 24px;
}

/* --- Column 3: Growth (Phone) --- */
/* --- Column 3: Growth (Phone) --- */
.why-us__card--growth {
  height: 766px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Ensure content doesn't spill out */
}

.why-us__growth-top {
  flex: 1; /* Take remaining space */
  min-height: 0; /* Allow shrinking */
  padding: 40px 24px 0;
  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%
  );
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Clip the image if it fits poorly */
}

.why-us__growth-top::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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
    );
}

.why-us__desc--light {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.6;
}

.why-us__phone-mockup {
  width: 240px;
  margin: auto auto 0; /* Center horizontally, push to bottom */
  position: relative;
  z-index: 2;
  flex-shrink: 0; /* Prevent mockup from collapsing weirdly */
}

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

.why-us__phone-screen {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us__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: 5;
}

.why-us__img-contain {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us__growth-bottom {
  background: #f1f3fb;
  padding: 40px 24px;
  flex-shrink: 0; /* Prevent this section from shrinking */
}

/* Responsive Behaviour */
@media (max-width: 1200px) {
  .why-us__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .why-us__card--creative,
  .why-us__card--growth,
  .why-us__card--transparent,
  .why-us__card--expertise {
    height: auto;
    min-height: 300px;
  }
}

/* CTA Section */
/* CTA + Footer Combined Section */
.cta-footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px;
  background: var(--white);
  position: relative;
}

.cta-footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Space out content vs footer if needed */
  padding: 80px 0 30px; /* Add padding for breathing room */
  gap: 56px;
  width: 100%;
  max-width: 100%;
  flex: 1; /* Grow to fill section */
  position: relative;
}

/* CTA Wrapper */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0px;
  gap: 40px;
  width: 100%;
  flex: 1;
  justify-content: center;
}

/* CTA Text Content */
.cta-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 40px;
  width: 100%;
  max-width: 748px;
  flex: none;
  order: 0;
}

/* CTA Text Group */
.cta-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 24px;
  width: 100%;
  max-width: 770px;
  flex: none;
  order: 0;
}

/* CTA Title */
.cta-title {
  width: 100%;
  max-width: 770px;
  font-family: "Neue Kaine";
  font-style: normal;
  font-weight: 700;
  font-size: 46px;
  line-height: 105%;
  text-align: center;
  color: #1d1d1f;
  flex: none;
  order: 0;
  align-self: stretch;
}

/* CTA Description */
.cta-description {
  width: 100%;
  max-width: 800px;
  font-family: "Schibsted Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 105%;
  text-align: center;
  letter-spacing: 0px;
  color: #1d1d1f;
  opacity: 0.8;
  flex: none;
  order: 1;
}

/* CTA Link Button */
.cta-link-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 8px;
  text-decoration: none;
  flex: none;
  order: 1;
  transition: transform 0.3s ease;
}

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

/* CTA Link Text */
.cta-link-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;
  flex: none;
  order: 0;
}

.cta-get-text {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #ff4000;
  flex: none;
  order: 0;
  align-self: stretch;
}

.cta-underline {
  width: 29px;
  height: 0px;
  border: 1px solid #ff4000;
  flex: none;
  order: 1;
}

/* CTA Arrow */
.cta-arrow {
  width: 32px;
  height: 24px;
  transform: rotate(-27.4deg);
  flex: none;
  order: 1;
  transition: transform 0.3s ease;
}

.cta-link-button:hover .cta-arrow {
  transform: rotate(-27.4deg) translateX(5px);
}

/* CTA Logo Wrapper */
.cta-logo-wrapper {
  position: relative;
  width: 100%;
  max-width: 1030px;
  height: auto; /* Let content define height */
  flex: none;
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

/* CTA Logo Text */
.cta-logo-text {
  font-family: "Schibsted Grotesk", var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 162px;
  line-height: 105%;
  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;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

/* CTA Logo Glow */
.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;
  opacity: 0;
}

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

/* Footer Wrapper (Natural Flow) */
.footer-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px;
  width: 100%;
  max-width: 1600px; /* Constrain width */
  padding-inline: 60px; /* Match previous left/right spacing */
  flex: none;
}

/* Footer Social Section */
.footer-social-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;
  width: 100%;
  max-width: 446px;
  flex: none;
  order: 0;
}

/* Footer Heading */
.footer-heading {
  font-family: "Lora", var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 90.95%;
  text-transform: uppercase;
  color: #ff6021;
  margin-bottom: 20px;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 20px;
  width: 100%;
  max-width: 446px;
  flex: none;
  order: 1;
  align-self: stretch;
}

/* Social Link */
.social-link {
  width: 57.69px;
  height: 57.69px;
  border: 0.915641px solid rgba(29, 29, 31, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

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

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

/* Footer Copyright */
.footer-copyright {
  width: auto;
  max-width: 369px;
  flex: none;
  order: 1;
}

.footer-copyright p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 90.95%;
  text-transform: uppercase;
  color: #1d1d1f;
  margin: 0;
}

/* 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);

  /* Sticky Header */
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 20px var(--spacing-md);
  margin-bottom: 0;
  width: 100%;
}

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

.services-container {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vh, 76px); /* Responsive gap */

  /* Sticky Stacking Animation */
  position: sticky;
  top: 0;
  height: 100vh;
  justify-content: center;
  background: var(--white);
  z-index: 1;
  padding-top: clamp(100px, 12vh, 140px); /* Increased to clear sticky header */
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.02); /* Slight shadow for depth */
}

.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;
  padding-inline: 30px;
}

.service-meta {
  font-family: var(--font-lora);
  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-lora);
  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: 2px;
  border-top: 1px solid var(--accent-orange);
  border-right: 1px solid var(--accent-orange);
}

.service-title {
  font-family: var(--font-lora);
  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 */
  padding-inline: 30px;
}

/* 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-lora);
  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 */
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(54, 125, 250, 0.4);
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) brightness(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image-wrapper:hover img {
  filter: contrast(1.2) brightness(1);
  transform: scale(1.05);
}

/* Futuristic Tech Glow Overlay */
.service-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(54, 125, 250, 0.15) 0%,
    transparent 50%,
    rgba(255, 64, 0, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.service-image-wrapper:hover::before {
  opacity: 1;
}

/* Scan Line Effect (VR/Tech Aesthetic) */
.service-image-wrapper::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(54, 125, 250, 0.3) 50%,
    transparent 100%
  );
  animation: scanLine 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes scanLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

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

.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 - 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;
  }
}

/* Interactive Logo Character Animation */
.interactive-char {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Ensure font properties are inherited */
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.interactive-char.active {
  animation: rubberBand 0.8s both;
  color: #367dfa; /* Primary Blue from your palette */
  text-shadow: 0 0 20px rgba(54, 125, 250, 0.5);
}

@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

@media (max-width: 1024px) {
  .cta-footer-section {
    height: auto;
    min-height: auto;
    padding: 60px 20px;
  }

  .cta-footer-container {
    height: auto;
    padding: 0;
    gap: 60px;
  }

  .cta-wrapper {
    padding: 0;
  }

  .cta-logo-wrapper {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
    margin: 40px 0;
  }

  .cta-logo-text {
    font-size: 60px;
    white-space: normal;
    text-align: center;
  }

  /* Reset absolute positioning for footer wrapper */
  .footer-wrapper {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0;
  }

  .footer-social-section {
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .social-links {
    justify-content: center;
  }

  .footer-copyright {
    width: 100%;
    text-align: center;
    max-width: 100%;
  }
}