/* ============================================
   CLAY GLOBAL CLONE - DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Custom Properties */
:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f7f4;
  --bg-dark: #0f0f0f;
  --bg-darker: #000000;
  --bg-card: #faf9f7;
  --bg-nav: rgba(255, 255, 255, 0.8);

  --text-primary: #0f0f0f;
  --text-secondary: #5a5a6a;
  --text-muted: #888888;
  --text-light: #ffffff;
  --text-link: #0f0f0f;

  --accent-purple: #3B4D8C;
  --accent-blue: #E89B3E;

  --border-color: rgba(0, 0, 0, 0.05);
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --section-padding: 80px 48px;
  --container-max: 1440px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-medium: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 40px;
  --radius-full: 100px;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--text-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out, opacity 0.3s ease;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--text-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cursor-follower span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  white-space: nowrap;
}

.cursor--hover .cursor-follower {
  width: 100px;
  height: 100px;
  background: var(--text-primary);
  border-color: var(--text-primary);
}

.cursor--hover .cursor-follower span {
  opacity: 1;
}

.cursor--hover .cursor {
  opacity: 0;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Lenis CSS */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

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

ul,
ol {
  list-style: none;
}

/* ============================================
   GLOBAL IMG — FIXED (was 30%, caused logo blowout)
   ============================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-medium);
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
  padding: 14px 48px;
  box-shadow: 0 1px 0 var(--border-color);
}

.navbar--dark {
  background: rgba(26, 29, 46, 0.9);
}

.navbar--dark .nav-link {
  color: var(--text-light);
}

.navbar--dark .nav-link:hover {
  opacity: 0.7;
}

/* ============================================
   LOGO — FULLY FIXED WITH PIXEL VALUES
   ============================================ */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  z-index: 10;
}

.navbar--dark .logo {
  color: var(--text-light);
}

.logo-image {
  height: 36px;
  width: auto;
  max-width: none;
  display: block;
  transition: var(--transition-fast);
}

.navbar.scrolled .logo-image {
  height: 28px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link--dropdown svg {
  width: 12px;
  height: 12px;
  transition: var(--transition-fast);
}

.nav-cta {
  background: var(--text-primary);
  color: var(--text-light);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-medium);
  letter-spacing: -0.2px;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar--dark .nav-cta {
  background: var(--text-light);
  color: var(--text-primary);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 10;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

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

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

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

.navbar--dark .menu-toggle span {
  background: var(--text-light);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero__content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-wrap: balance;
}

.hero__subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 580px;
  font-weight: 400;
}

.hero__3d {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 650px;
  height: 650px;
  z-index: 1;
  opacity: 0.9;
}

.hero__3d-shape {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(145deg, #f5f5f7 0%, #e8e8ec 30%, #d8d8e0 60%, #c8c8d4 100%);
  box-shadow:
    inset -30px -30px 60px rgba(255, 255, 255, 0.8),
    inset 10px 10px 40px rgba(0, 0, 0, 0.04),
    0 40px 80px rgba(0, 0, 0, 0.06),
    0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.hero__3d-shape::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 70%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, transparent 100%);
  border-radius: 50%;
  filter: blur(15px);
}

.hero__3d-shape::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(200, 200, 212, 0.4) 0%, transparent 100%);
}

.hero__sphere-purple {
  position: absolute;
  top: 18%;
  left: 55%;
  width: 40px;
  height: 40px;
  z-index: 3;
  animation: floatSphere 6s ease-in-out infinite;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #5A6FAE, #3B4D8C, #2A3766);
  box-shadow: 0 4px 15px rgba(59, 77, 140, 0.4), inset -3px -3px 8px rgba(0, 0, 0, 0.15), inset 3px 3px 8px rgba(255, 255, 255, 0.3);
}

.hero__sphere-orange {
  position: absolute;
  bottom: 28%;
  right: 8%;
  width: 28px;
  height: 28px;
  z-index: 3;
  animation: floatSphere 7s ease-in-out infinite reverse;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #F2B968, #E89B3E, #D4872A);
  box-shadow: 0 4px 12px rgba(232, 155, 62, 0.4), inset -2px -2px 6px rgba(0, 0, 0, 0.15), inset 2px 2px 6px rgba(255, 255, 255, 0.3);
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */

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

.section--full {
  max-width: 100%;
  padding: 80px 60px;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section__title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.section__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CAPABILITIES ACCORDION
   ============================================ */

.capabilities-accordion {
  margin-top: 80px;
  border-top: 1px solid var(--border-color);
}

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

.accordion-item__header {
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-medium);
}

.accordion-item__number {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

.accordion-item__title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -1px;
}

.accordion-item__plus {
  margin-left: auto;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.5s var(--transition-medium);
}

.accordion-item__plus::before,
.accordion-item__plus::after {
  content: '';
  position: absolute;
  background: var(--text-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item__plus::before {
  width: 100%;
  height: 2px;
}

.accordion-item__plus::after {
  height: 100%;
  width: 2px;
}

.accordion-item.active .accordion-item__plus {
  transform: rotate(45deg);
}

.accordion-item__content {
  max-height: 0;
  transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-item__content {
  max-height: 1000px;
}

.accordion-item__inner {
  padding: 0 0 60px 80px;
  max-width: 800px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.accordion-item__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.accordion-item__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item__list li {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
}

/* ============================================
   CASE STUDIES / PORTFOLIO (Asymmetrical Grid)
   ============================================ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px 32px;
  margin-top: 60px;
  padding-bottom: 80px;
}

.portfolio-item {
  grid-column: span 6;
  position: relative;
  cursor: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:nth-child(even) {
  margin-top: 0;
}

.portfolio-item--wide {
  grid-column: span 12;
  margin-bottom: 40px;
}

.portfolio-item__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--bg-secondary);
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.portfolio-item__image-wrap.video-error::after {
  content: 'Preview Unavailable';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.portfolio-item--wide .portfolio-item__image-wrap {
  aspect-ratio: 21/9;
}

.portfolio-item__image {
  width: 100%;
  height: 130%;
  position: absolute;
  top: -15%;
  left: 0;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}

.portfolio-item__video {
  width: 100%;
  height: 130%;
  position: absolute;
  top: -15%;
  left: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-item__video {
  opacity: 1;
}

.portfolio-item__content {
  padding-top: 40px;
}

.portfolio-item__brand {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.portfolio-item__title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--text-primary);
  max-width: 90%;
}

.portfolio-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portfolio-item__tag {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-item__tag {
  background: var(--text-primary);
  color: white;
  border-color: var(--text-primary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.hero--about {
  background: var(--bg-dark);
}

.hero--about .hero__title {
  color: var(--text-light);
}

.hero--about .hero__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.hero__3d-shape--about {
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #3B4D8C, #2A3766, #1a1d30, #0d0f1a);
  box-shadow:
    inset -40px -20px 60px rgba(0, 0, 0, 0.5),
    inset 20px 20px 60px rgba(255, 255, 255, 0.03),
    0 0 100px rgba(0, 0, 0, 0.3);
}

.hero__3d-shape--about::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 20%;
  width: 55%;
  height: 35%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-color);
  transition: var(--transition-medium);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.stat-item__number {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat-item__label {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.value-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-color);
  transition: var(--transition-medium);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.value-card__number {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-purple);
  margin-bottom: 16px;
}

.value-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.value-card__description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Team Photo */
.team-section {
  margin-top: 80px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.team-section img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
  padding: 120px 48px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact-hero__content {
  padding-top: 40px;
}

.contact-hero__title {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  line-height: 1.05;
}

.contact-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.contact-info__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info__label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.contact-info__value {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--text-primary);
  padding-bottom: 2px;
  transition: var(--transition-fast);
}

.contact-info__value:hover {
  color: var(--accent-purple);
  border-color: var(--accent-purple);
}

.contact-hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

.contact-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Form */
.contact-form-section {
  padding: 100px 48px;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  margin: 0 48px 80px;
  position: relative;
  overflow: hidden;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 60px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.contact-form__title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.form-group {
  margin-bottom: 32px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__toggle {
  width: 100%;
  padding: 16px 0;
  border-bottom: 2px solid var(--border-color);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-medium);
}

.custom-select__toggle::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-primary);
  border-bottom: 2px solid var(--text-primary);
  transform: rotate(45deg);
  margin-right: 8px;
  transition: var(--transition-medium);
}

.custom-select.active .custom-select__toggle::after {
  transform: rotate(-135deg);
}

.custom-select.active .custom-select__toggle {
  border-color: var(--accent-purple);
}

.custom-select__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-top: 12px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.custom-select.active .custom-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__search {
  width: 100% !important;
  padding: 16px !important;
  border: none !important;
  border-bottom: 1px solid var(--border-color) !important;
  font-size: 14px !important;
  background: transparent !important;
  margin-bottom: 0 !important;
}

.custom-select__options {
  max-height: 250px;
  overflow-y: auto;
}

.custom-select__option {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.custom-select__option:hover {
  background: rgba(59, 77, 140, 0.1);
  color: var(--accent-purple);
}

.custom-select__option.hidden {
  display: none;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-color);
  font-size: 18px;
  font-weight: 500;
  transition: var(--transition-medium);
  color: var(--text-primary);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-purple);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

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

.form-submit {
  margin-top: 48px;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--text-light);
  padding: 18px 48px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition-medium);
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

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

/* ============================================
   LOCATIONS
   ============================================ */

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

.location-card {
  padding: 48px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-medium);
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-purple);
}

.location-card__city {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.location-card__address {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.location-card__address a:hover {
  color: var(--accent-purple);
}

/* ============================================
   SERVICES PAGE DETAILS
   ============================================ */

.hero--services {
  background: radial-gradient(circle at 100% 0%, rgba(59, 77, 140, 0.05), transparent 40%);
}

.hero__3d-shape--services {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(145deg, #E8DFD0 0%, #D8CFC0 30%, #C8BFB0 60%, #B8AFA0 100%);
  animation: blobRotate 20s linear infinite;
}

@keyframes blobRotate {
  0% {
    transform: rotate(0deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  33% {
    border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
  }

  66% {
    border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
  }

  100% {
    transform: rotate(360deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.service-detail {
  padding: 60px 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse>* {
  direction: ltr;
}

.service-detail__content {
  max-width: 500px;
}

.service-detail__number {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-purple);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail__number::after {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--accent-purple);
}

.service-detail__title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.service-detail__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail__list-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding-left: 0;
  position: relative;
}

.service-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-detail__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-detail:hover .service-detail__image img {
  transform: scale(1.02);
}

.services-list {
  padding: 0 80px 80px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.service-list-item {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  transition: var(--transition-medium);
}

.service-list-item:last-child {
  border-bottom: 1px solid var(--border-color);
}

.service-list-item:hover {
  padding-left: 16px;
}

.service-list-item__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.service-list-item__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list-item__description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
}

.service-list-item__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.service-list-item__skill {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   BLOG PREVIEW
   ============================================ */

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

.blog-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-medium);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.blog-card__image {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #2A3766, #1a1d2e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__image-placeholder {
  font-size: 40px;
  opacity: 0.4;
}

.blog-card__content {
  padding: 28px;
}

.blog-card__category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-purple);
  margin-bottom: 12px;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.blog-card__meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 80px 0;
  position: relative;
  perspective: 1200px;
}

.cta-banner {
  background: linear-gradient(135deg, #0a0b14 0%, #1A2550 50%, #2A3766 100%);
  color: var(--text-light);
  border-radius: var(--radius-xl);
  padding: 120px 48px;
  max-width: calc(var(--container-max) - 120px);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.cta-banner::before {
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 77, 140, 0.3) 0%, transparent 70%);
  animation: floatCalm 15s ease-in-out infinite alternate;
}

.cta-banner::after {
  bottom: -20%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232, 155, 62, 0.25) 0%, transparent 70%);
  animation: floatCalm 12s ease-in-out infinite alternate-reverse;
}

.cta-banner__interactive-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(59, 77, 140, 0.45) 0%,
      rgba(232, 155, 62, 0.25) 30%,
      transparent 70%);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.cta-banner__interactive-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 255, 255, 0.4) 0%,
      transparent 80%);
  z-index: 2;
}

@keyframes floatCalm {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-30px, 40px) scale(1.1);
  }
}

.cta-banner>* {
  position: relative;
  z-index: 2;
}

.cta-section__title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
  color: white;
}

.cta-section__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Floral Bloom Interaction */
.form-bloom {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 77, 140, 0.3) 0%, rgba(232, 155, 62, 0.2) 40%, transparent 70%);
  filter: blur(50px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0.4);
}

.contact-form-section:focus-within .form-bloom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Floating Organic Petals */
.form-petals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.form-petal {
  position: absolute;
  background: linear-gradient(135deg, rgba(59, 77, 140, 0.25), rgba(232, 155, 62, 0.2));
  filter: blur(25px);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: floatFlower 15s linear infinite;
  box-shadow: 0 0 40px rgba(59, 77, 140, 0.1);
}

.form-petal:nth-child(1) {
  width: 150px;
  height: 180px;
  top: 10%;
  left: 5%;
  animation-duration: 25s;
}

.form-petal:nth-child(2) {
  width: 200px;
  height: 220px;
  top: 60%;
  left: 80%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.form-petal:nth-child(3) {
  width: 120px;
  height: 140px;
  top: 30%;
  left: 85%;
  animation-duration: 22s;
  animation-delay: -2s;
}

.form-petal:nth-child(4) {
  width: 180px;
  height: 200px;
  top: 75%;
  left: 10%;
  animation-duration: 28s;
  animation-delay: -10s;
}

.form-petal:nth-child(5) {
  width: 100px;
  height: 120px;
  top: 45%;
  left: 15%;
  animation-duration: 18s;
  animation-delay: -7s;
}

@keyframes floatFlower {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  33% {
    transform: translate(30px, -50px) rotate(10deg) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) rotate(-5deg) scale(0.9);
  }

  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-secondary);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

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

.footer__brand h3 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  line-height: 1;
}

.footer__contact-item {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 500;
}

.footer__contact-item a {
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 1px;
  transition: var(--transition-fast);
}

.footer__contact-item a:hover {
  opacity: 0.6;
}

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

.footer__nav a {
  font-size: 17px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer__nav a:hover {
  transform: translateX(4px);
  opacity: 0.6;
}

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

.footer__location h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer__location p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer__location a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.footer__location a:hover {
  border-color: var(--text-secondary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
  font-size: 18px;
  color: var(--text-secondary);
}

.footer__social a:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.footer__legal {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

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

.footer__copyright {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================
   TRANSFORM SECTION
   ============================================ */

.transform-section {
  padding: 80px 48px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.transform-section__title {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.15;
  max-width: 600px;
}

.transform-section__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float3d {

  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }

  25% {
    transform: translateY(-52%) rotate(1deg);
  }

  50% {
    transform: translateY(-48%) rotate(-1deg);
  }

  75% {
    transform: translateY(-51%) rotate(0.5deg);
  }
}

@keyframes floatSphere {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(10px, -15px);
  }

  50% {
    transform: translate(-5px, -25px);
  }

  75% {
    transform: translate(15px, -10px);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  100% {
    transform: translateX(-50%);
  }
}

.animate-on-scroll {
  opacity: 1;
  transform: none;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   CLIENT LOGOS
   ============================================ */

.clients-section {
  padding: 60px 48px;
  overflow: hidden;
}

.clients-marquee {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 60px;
  align-items: center;
}

.clients-marquee__item {
  font-size: 24px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.clients-marquee__item:hover {
  color: var(--text-primary);
  transform: scale(1.1);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--border-color);
  padding: 32px 0;
  cursor: pointer;
}

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

.faq-item__question {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.3px;
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-medium);
  flex-shrink: 0;
  margin-left: 20px;
}

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

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
}

/* ============================================
   APPROACH SECTION (About page)
   ============================================ */

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

.approach-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: var(--transition-medium);
}

.approach-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.approach-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.approach-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */

.page-transition {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .hero {
    padding: 140px 48px 80px;
  }

  .section {
    padding: 80px 48px;
  }

  .section--full {
    padding: 80px 48px;
  }

  .footer {
    padding: 60px 48px;
  }

  .contact-hero {
    padding: 140px 48px 60px;
  }

  .services-hero {
    padding: 140px 48px 60px;
  }

  .service-detail {
    padding: 60px 48px;
    gap: 48px;
  }

  .services-list {
    padding: 0 48px 60px;
  }

  .contact-form-section {
    padding: 60px 48px;
  }

  .faq-section {
    padding: 60px 48px;
  }

  .transform-section {
    padding: 80px 48px;
  }

  .clients-section {
    padding: 60px 48px;
  }

  .cta-section {
    padding: 80px 48px;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 16px 24px;
  }

  .navbar.scrolled {
    padding: 12px 24px;
  }

  .logo-image {
    height: 30px;
  }

  .navbar.scrolled .logo-image {
    height: 24px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 10001;
  }

  /* navbar bar stays above the overlay */
  .navbar {
    z-index: 10000;
  }

  /* =============================================
     MOBILE NAV OPEN — full screen solid overlay
     ============================================= */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 40px;
    gap: 32px;
    animation: fadeIn 0.25s ease;
    z-index: 9999;
  }

  .navbar--dark .nav-links.open {
    background: #0f0f0f;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links.open .nav-link {
    font-size: 28px;
    font-weight: 700;
    color: #0f0f0f;
  }

  .navbar--dark .nav-links.open .nav-link {
    color: #ffffff;
  }

  .nav-links.open .nav-cta {
    margin-top: 8px;
    text-align: center;
    width: 100%;
    max-width: 280px;
  }

  .hero {
    padding: 120px 32px 60px;
  }

  .hero__3d {
    width: 45%;
    right: -5%;
    opacity: 0.5;
  }

  .hero__title {
    font-size: 44px;
  }

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

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

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

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

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

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

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

  .contact-hero {
    grid-template-columns: 1fr;
    padding: 120px 32px 40px;
  }

  .contact-hero__image {
    height: 350px;
  }

  .contact-form-section {
    padding: 40px 24px;
    margin: 0 24px 60px;
  }

  .contact-form {
    padding: 40px 32px;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 32px;
  }

  .service-detail--reverse {
    direction: ltr;
  }

  .service-list-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-list {
    padding: 0 32px 40px;
  }

  .about-hero {
    padding: 120px 32px 60px;
  }

  .about-hero__3d {
    opacity: 0.3;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }

  .section {
    padding: 60px 32px;
  }

  .section--full {
    padding: 60px 32px;
  }

  .transform-section {
    padding: 60px 32px;
  }

  .cta-section {
    padding: 60px 32px;
  }

  .clients-section {
    padding: 40px 32px;
  }

  .faq-section {
    padding: 40px 32px;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 12px 20px;
  }

  .navbar.scrolled {
    padding: 10px 20px;
  }

  .logo-image {
    height: 26px;
  }

  .navbar.scrolled .logo-image {
    height: 20px;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 50px;
  }

  .hero__title {
    font-size: 34px;
    letter-spacing: -1.5px;
  }

  .hero__3d {
    display: none;
  }

  .hero__sphere-purple,
  .hero__sphere-orange {
    display: none;
  }

  .contact-form-section {
    padding: 32px 16px;
    margin: 0 16px 40px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .form-row {
    gap: 24px;
  }

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

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

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

  .footer {
    padding: 40px 20px;
  }

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

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

  .footer__brand h3 {
    font-size: 36px;
  }

  .services-hero {
    padding: 100px 20px 40px;
  }

  .about-hero {
    padding: 100px 20px 50px;
    min-height: auto;
  }

  .about-hero__3d {
    display: none;
  }

  .section {
    padding: 40px 20px;
  }

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

  .location-card__city {
    font-size: 28px;
  }
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}

/* ============================================
   SELECTION
   ============================================ */

::selection {
  background: rgba(59, 77, 140, 0.2);
  color: var(--text-primary);
}