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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-main);
  color: var(--text-gray);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  cursor: none;
}

/* CUSTOM CURSOR */
@media (hover: none) and (pointer: coarse), (max-width: 768px) {
  body, a, button, .magnetic, .port-card {
    cursor: auto !important;
  }
  a, button, .magnetic {
    cursor: pointer !important;
  }
  .cursor, .cursor-trail {
    display: none !important;
  }
}

.cursor {
  width: 26px;
  height: 26px;
  color: var(--primary);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  will-change: transform;
}

.cursor svg {
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  will-change: transform;
}

.cursor.hovered svg {
  transform: scale(1.15) rotate(-15deg);
  opacity: 0.6;
}

.cursor-trail {
  width: 6px;
  height: 6px;
  background: rgba(91, 110, 255, 0.2);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  will-change: transform;
  filter: blur(1px);
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s linear;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease;
  cursor: none;
}

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

:root {
  --primary: #5B6EFF;
  --primary-hover: #4F6EF7;
  --bg-main: #F8FAFC;
  --bg-soft: #F1F5F9;
  --bg-card: #FFFFFF;
  --text-main: #000000;
  --text-gray: #333333;
  --border: #E2E8F0;
  --nav-height: 70px;
  --accent-dark: #000000;

  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 80px;
  --space-xxl: 100px;

  /* Container */
  --container-max: 1200px;
  --container-padding: 24px;
}

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-padding);
  height: var(--nav-height);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  z-index: 201;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 50px;
  width: auto;
  vertical-align: middle;
  transition: transform 0.2s ease;
  transform-origin: left center;
}

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

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #000000;
}

.nav-links a.active {
  font-weight: 600;
}

.nav-cta {
  padding: 12px 28px;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 20px rgba(91, 110, 255, 0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 201;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 190;
  padding: 20px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
  animation: slideDown 0.4s ease forwards;
}

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

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

.mobile-nav a {
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-gray);
  border-radius: 12px;
  transition: transform 0.2s, color 0.2s;
}

.mobile-nav a:hover {
  transform: translateX(10px);
  background: var(--bg-soft);
  color: var(--primary);
}

.mobile-nav .mob-cta {
  margin-top: 12px;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}

/* ===== HERO ===== */
#home {
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: 
    linear-gradient(rgba(245, 241, 234, 0.6), rgba(245, 241, 234, 0.6)),
    url('https://www.transparenttextures.com/patterns/handmade-paper.png');
  background-color: #F5F1EA;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
  animation: floatShape 10s infinite alternate;
}

.shape-1 {
  display: none;
}

.shape-2 {
  display: none;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(30px, 50px)
  }
}

.hero-dots {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 550px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: var(--space-md);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.5);
    opacity: 0.5
  }
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #1C1917;
  margin-bottom: var(--space-md);
}

.hero-title em {
  font-style: italic;
  color: var(--primary);
}

.hero-sub {
  font-size: 18px;
  color: #1C1917;
  opacity: 0.85;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

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

.btn-dark,
.btn-outline,
.form-btn,
.cta-band-btn {
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s, background 0.3s;
}

.btn-dark:active {
  transform: scale(0.95);
}

.btn-dark {
  padding: 18px 36px;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-dark:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(91, 110, 255, 0.2);
}

.btn-outline {
  padding: 18px 40px;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* Desktop Stats */
.hero-visual {
  width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  z-index: 3;
}

.hero-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-card:nth-child(2),
.hero-card:nth-child(4) {
  margin-top: 24px;
}

.hero-card-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.hero-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.hero-card-label {
  font-size: 10px;
  color: #aaa;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Mobile Stats Strip */
.hero-stats-strip {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.hstat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hstat-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.hstat-num {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.hstat-label {
  font-size: 10px;
  color: #aaa;
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-xxl) 0;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: var(--space-lg);
}

/* Spotlight */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.8), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 10;
}

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

/* ===== SERVICES ===== */
#services {
  background: var(--bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-md);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  background: #fff;
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-emoji {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.service-name {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== BUILDING ===== */
.building-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.building-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.building-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.building-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.building-card-sub {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.building-trust {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 48px;
  letter-spacing: 0.5px;
}

.service-pills {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  color: #555;
  font-weight: 500;
}

/* ===== PORTFOLIO ===== */
#portfolio {
  background: transparent;
}

.portfolio-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.portfolio-top .section-title {
  margin-bottom: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.port-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.port-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.port-thumb {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.port-thumb-bg {
  position: absolute;
  font-size: 80px;
  opacity: 0.1;
  transition: transform 0.5s;
}

.port-card:hover .port-thumb-bg {
  transform: scale(1.1) rotate(5deg);
}

.port-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}

.port-card:hover .port-thumb-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.port-play-btn {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.port-card:hover .port-play-btn {
  opacity: 1;
  transform: scale(1);
}

.port-info {
  padding: 20px 24px;
}

.port-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f5f5f5;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

.port-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

/* ===== WHY US ===== */
#why {
  background: var(--bg-soft);
  color: var(--text-dark);
}

#why .section-label {
  color: var(--primary);
}

#why {
  background: #F8FAFC;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.why-row {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  transition: transform 0.3s;
  cursor: default;
}

.why-row:hover {
  transform: translateX(8px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.why-row:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
  color: var(--primary);
}

.why-row h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
}

.why-row p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

.why-premium-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.why-premium-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 16px;
}

.why-premium-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.why-premium-card ul {
  list-style: none;
  padding: 0;
}

.why-premium-card li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 12px;
}

.why-premium-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}



/* ===== ABOUT ===== */
#about {
  background: transparent;
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.cinematic-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: var(--space-lg);
}

.cinematic-copy {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}

.about-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.stat-icon {
  font-size: 16px;
  color: #94A3B8;
  opacity: 0.6;
}

.stat-count {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: #0F172A;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 14px;
  color: #64748B;
  font-weight: 500;
  margin-top: 0;
}

.cta-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.2);
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.2);
}

.about-visual {
  background: var(--grey);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-chip {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.about-chip::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0,0,0,0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.about-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: var(--border);
}

.about-chip:hover::after {
  opacity: 1;
}

.about-chip-icon {
  font-size: 24px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-chip:hover .about-chip-icon {
  transform: translateY(-4px) scale(1.1);
}

.chip-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfd;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-chip:hover .chip-icon-wrap {
  transform: rotate(15deg) scale(1.1);
  background: var(--bg-light);
}

.about-chip-icon {
  font-size: 20px;
}

.about-chip-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-chip-sub {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--accent-dark);
  padding: var(--space-xxl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: #fff;
  border-radius: 50%;
  filter: blur(100px);
  top: -50px;
  right: -50px;
  opacity: 0.05;
}

.cta-band h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: #777;
  font-size: 16px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.cta-band-btn {
  padding: 20px 50px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.cta-band-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(91, 110, 255, 0.25);
}

/* ===== CONTACT ===== */
#contact {
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-link-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-md);
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-link-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-link-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contact-link-card:hover .contact-link-icon {
  transform: rotate(-10deg);
  background: var(--primary);
  color: #fff;
}

.contact-link-title {
  font-size: 16px;
  font-weight: 600;
}

.contact-link-sub {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.contact-link-arrow {
  margin-left: auto;
  color: #ccc;
  font-size: 22px;
  transition: transform 0.2s, color 0.2s;
}

.contact-link-card:hover .contact-link-arrow {
  transform: translate(5px, -5px);
  color: var(--primary);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.input-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-label {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.input,
.textarea {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
  width: 100%;
}

.input:focus,
.textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(1, 73, 124, 0.1);
}

.input::placeholder,
.textarea::placeholder {
  color: #ccc;
}

.textarea {
  height: 140px;
}

.form-btn {
  padding: 18px 40px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  align-self: flex-start;
}

.form-btn:hover {
  background: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 20px rgba(91, 110, 255, 0.2);
}

/* ===== FOOTER ===== */
footer {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.footer-logo span {
  color: var(--primary);
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 13px;
  color: #333333;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #000000;
}

.footer-copy {
  font-size: 13px;
  color: #333333;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

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

  to {
    opacity: 1;
    transform: none
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --nav-height: 100px;
  }
  
  .brand-logo {
    height: 60px;
  }

  nav {
    padding: 0 36px;
  }

  .section {
    padding: 90px 36px;
  }

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

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

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

  .why-grid {
    gap: 50px;
  }

  .about-grid {
    gap: 50px;
  }

  .cta-band {
    padding: 70px 36px;
  }

  .spotlight-card::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .brand-logo {
    height: 45px;
  }

  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  nav {
    padding: 0 var(--container-padding);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #home {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 52px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-dark,
  .btn-outline {
    text-align: center;
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats-strip {
    display: grid;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 38px);
    margin-bottom: var(--space-lg);
  }

  .services-grid,
  .building-grid,
  .portfolio-grid,
  .why-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-box {
    padding: 40px 24px;
  }

  .stat-num {
    font-size: 40px;
  }

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

  .form-btn {
    width: 100%;
    text-align: center;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl) 0;
  }

  .cta-band-btn {
    width: 100%;
    text-align: center;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg) 0;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}