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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

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

ul {
  list-style: none
}

/* ================= TOKENS ================= */
:root {
  --ink: #0B0E2B;
  --ink-soft: #1E2245;
  --muted: #6B7191;
  --line: #EBEAF2;
  --bg: #FAFAF7;
  --card: #FFFFFF;
  --primary: #4F46E5;
  --primary-dark: #3730A3;
  --purple: #8B5CF6;
  --magenta: #D946EF;
  --coral: #FF5A5F;
  --amber: #F59E0B;
  --green: #10B981;
  --sky: #0EA5E9;
  --grad-hero: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 45%, #FF5A5F 100%);
  --grad-soft: linear-gradient(135deg, #EEF2FF 0%, #FAE8FF 60%, #FFE4E6 100%);
  --grad-cta: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 45%, #FF5A5F 100%);
  --shadow-sm: 0 1px 2px rgba(11, 14, 43, .05);
  --shadow-md: 0 10px 30px -12px rgba(11, 14, 43, .15);
  --shadow-lg: 0 30px 60px -20px rgba(11, 14, 43, .2);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1240px;
}

/* ================= TYPOGRAPHY ================= */
.display {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ink)
}

.mono {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  letter-spacing: .02em
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.1
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 700
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 700
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.01em
}

p {
  color: var(--muted)
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral)
}

.grad-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
  white-space: nowrap
}

.btn-primary {
  background: var(--ink);
  color: #fff
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(79, 70, 229, .5)
}

.btn-accent {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(255, 90, 95, .5)
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(255, 90, 95, .6)
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line)
}

.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px)
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3)
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--ink)
}

.btn .arrow {
  transition: transform .25s
}

.btn:hover .arrow {
  transform: translateX(4px)
}

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .3s
}

.nav.scrolled {
  background: rgba(250, 250, 247, .85);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Bricolage Grotesque";
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  color: var(--ink)
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad-hero);
  position: relative;
  display: grid;
  place-items: center
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 7px;
  background: var(--ink);
  z-index: 0
}

.logo-mark span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: .9rem;
  font-weight: 800
}

.nav-menu {
  display: flex;
  gap: 6px
}

.nav-menu a {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .2s;
  position: relative
}

.nav-menu a:hover {
  background: #fff;
  color: var(--primary)
}

.nav-menu a.active {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  place-items: center
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--ink)
}

.hamburger span::before {
  top: -6px
}

.hamburger span::after {
  top: 6px
}

@media(max-width:960px) {

  .nav-menu,
  .nav-cta .btn {
    display: none
  }

  .hamburger {
    display: grid
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 90px 28px 28px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.77, 0, .18, 1)
}

.mobile-menu.open {
  transform: translateY(0)
}

.mobile-menu a {
  padding: 18px 0;
  font-family: "Bricolage Grotesque";
  font-size: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-menu .btn {
  margin-top: 24px;
  align-self: flex-start
}

/* ================= HERO (home) ================= */
.hero {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .25), transparent 60%);
  filter: blur(40px)
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 95, .18), transparent 60%);
  filter: blur(40px)
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: .4
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center
}

.hero-text .eyebrow {
  margin-bottom: 24px
}

.hero-text h1 {
  margin-bottom: 22px
}

.hero-text h1 .underline-art {
  position: relative;
  display: inline-block
}

.hero-text h1 .underline-art::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: .4em;
  background: linear-gradient(90deg, rgba(255, 90, 95, .35), rgba(139, 92, 246, .35));
  z-index: -1;
  border-radius: 4px
}

.hero-text .lead {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px
}

.avatars {
  display: flex
}

.avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  object-fit: cover;
  margin-left: -10px
}

.avatars img:first-child {
  margin-left: 0
}

.hero-meta .stars {
  color: var(--amber);
  font-size: .9rem;
  margin-bottom: 2px
}

.hero-meta small {
  color: var(--muted);
  font-size: .85rem
}

.hero-meta strong {
  font-size: .95rem;
  color: var(--ink)
}

.hero-visual {
  position: relative;
  aspect-ratio: 1/1.05
}

.hero-visual .main-img {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.hero-visual .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-visual .main-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, .3) 0%, rgba(139, 92, 246, .1) 40%, rgba(255, 90, 95, .4) 100%);
  mix-blend-mode: multiply
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 6s ease-in-out infinite
}

.floating-card.fc-1 {
  top: 8%;
  left: -6%;
  animation-delay: 0s
}

.floating-card.fc-2 {
  bottom: 10%;
  right: -4%;
  animation-delay: -3s
}

.fc-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff
}

.fc-1 .fc-icon {
  background: var(--grad-hero)
}

.fc-2 .fc-icon {
  background: linear-gradient(135deg, #10B981, #059669)
}

.floating-card strong {
  font-size: .9rem;
  display: block;
  color: var(--ink)
}

.floating-card small {
  font-size: .78rem;
  color: var(--muted)
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

@media(max-width:900px) {
  .hero {
    padding: 120px 0 60px
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%
  }
}

/* ================= PAGE HERO (inner pages) ================= */
.page-hero {
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFAF7 0%, #F3F0FF 100%)
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .2), transparent 60%);
  filter: blur(40px)
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 95, .15), transparent 60%);
  filter: blur(40px)
}

.page-hero-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.page-hero .eyebrow {
  margin-bottom: 20px
}

.page-hero h1 {
  margin-bottom: 18px
}

.page-hero p {
  font-size: 1.12rem;
  max-width: 620px;
  margin: 0 auto
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: .88rem;
  color: var(--muted)
}

.breadcrumb a {
  color: var(--ink);
  font-weight: 500
}

.breadcrumb a:hover {
  color: var(--primary)
}

.breadcrumb span {
  color: var(--muted)
}

/* ================= CLIENTS MARQUEE ================= */
.clients-strip {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff
}

.clients-head {
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 30px
}

.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent)
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll 40s linear infinite
}

.marquee-track:hover {
  animation-play-state: paused
}

.client-name {
  font-family: "Bricolage Grotesque";
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink-soft);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .7;
  transition: opacity .2s
}

.client-name:hover {
  opacity: 1;
  color: var(--primary)
}

.client-name::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--grad-soft);
  display: inline-block;
  flex-shrink: 0
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ================= ABOUT (home + about page) ================= */
.about {
  padding: 120px 0;
  position: relative
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center
}

.about-visual {
  position: relative;
  aspect-ratio: 1/1
}

.about-visual .ab-img {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md)
}

.about-visual .ab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ab-img-1 {
  top: 0;
  left: 0;
  width: 68%;
  height: 65%
}

.ab-img-2 {
  bottom: 0;
  right: 0;
  width: 58%;
  height: 55%;
  border: 8px solid var(--bg)
}

.about-shape {
  position: absolute;
  top: 40%;
  left: 30%;
  width: 120px;
  height: 120px;
  background: var(--grad-hero);
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  z-index: -1
}

.about-content h2 {
  margin-bottom: 24px
}

.about-content h2 .grad-text {
  display: inline
}

.about-content .lead {
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 520px
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  transition: all .25s
}

.feature:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--primary)
}

.feature strong {
  display: block;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 2px
}

.feature small {
  font-size: .82rem;
  color: var(--muted)
}

.about-ctas {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap
}

.call-block {
  display: flex;
  align-items: center;
  gap: 12px
}

.call-block .phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: var(--primary)
}

.call-block small {
  display: block;
  color: var(--muted);
  font-size: .78rem
}

.call-block strong {
  font-size: 1rem;
  color: var(--ink)
}

@media(max-width:900px) {
  .about {
    padding: 80px 0
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .feature-grid {
    grid-template-columns: 1fr
  }
}

/* ================= MISSION/VISION/VALUES ================= */
.mvv {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #F5F3FF 100%)
}

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

.mvv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: all .35s;
  position: relative;
  overflow: hidden
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.mvv-card .mvv-num {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: "Bricolage Grotesque";
  font-size: 4rem;
  font-weight: 700;
  color: rgba(79, 70, 229, .08);
  line-height: 1
}

.mvv-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 22px
}

.mvv-card:nth-child(1) .mvv-icon {
  background: linear-gradient(135deg, #4F46E5, #8B5CF6)
}

.mvv-card:nth-child(2) .mvv-icon {
  background: linear-gradient(135deg, #FF5A5F, #F59E0B)
}

.mvv-card:nth-child(3) .mvv-icon {
  background: linear-gradient(135deg, #10B981, #0EA5E9)
}

.mvv-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px
}

.mvv-card p {
  font-size: .95rem
}

@media(max-width:900px) {
  .mvv-grid {
    grid-template-columns: 1fr
  }
}

/* ================= TIMELINE ================= */
.timeline-section {
  padding: 120px 0
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 60px auto 0;
  padding-left: 40px
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--coral));
  border-radius: 2px
}

.timeline-item {
  position: relative;
  padding-bottom: 40px
}

.timeline-item:last-child {
  padding-bottom: 0
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .15)
}

.timeline-year {
  font-family: "Bricolage Grotesque";
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 6px
}

.timeline-item h3 {
  margin-bottom: 6px;
  font-size: 1.15rem
}

.timeline-item p {
  font-size: .95rem
}

/* ================= TEAM ================= */
.team-section {
  padding: 120px 0;
  background: #fff
}

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

.team-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 20px;
  transition: all .3s
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-md)
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.team-card:hover .team-photo img {
  transform: scale(1.1)
}

.team-card h3 {
  margin-bottom: 2px;
  font-size: 1.1rem
}

.team-card .role {
  color: var(--primary);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 14px
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 8px
}

.team-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-size: .8rem;
  transition: all .2s
}

.team-socials a:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px)
}

@media(max-width:900px) {
  .team-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:500px) {
  .team-grid {
    grid-template-columns: 1fr
  }
}

/* ================= SERVICES ================= */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #F0EFFF 100%);
  position: relative
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px
}

.section-head .eyebrow {
  margin-bottom: 18px
}

.section-head h2 {
  margin-bottom: 14px
}

.section-head p {
  font-size: 1.05rem
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .35s cubic-bezier(.25, 1, .5, 1);
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-hero);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-lg)
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 22px;
  position: relative
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: inherit;
  filter: blur(16px);
  opacity: .35;
  z-index: -1
}

.sc-1 .service-icon {
  background: linear-gradient(135deg, #4F46E5, #8B5CF6)
}

.sc-2 .service-icon {
  background: linear-gradient(135deg, #0EA5E9, #4F46E5)
}

.sc-3 .service-icon {
  background: linear-gradient(135deg, #EC4899, #F59E0B)
}

.sc-4 .service-icon {
  background: linear-gradient(135deg, #10B981, #0EA5E9)
}

.sc-5 .service-icon {
  background: linear-gradient(135deg, #FF5A5F, #F59E0B)
}

.sc-6 .service-icon {
  background: linear-gradient(135deg, #8B5CF6, #EC4899)
}

.service-card h3 {
  margin-bottom: 10px
}

.service-card p {
  font-size: .9rem;
  margin-bottom: 22px
}

.service-card ul {
  margin-bottom: 22px;
  display: grid;
  gap: 8px
}

.service-card ul li {
  font-size: .88rem;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
  align-items: flex-start
}

.service-card ul li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
  transition: color .2s
}

.service-link:hover {
  color: var(--primary)
}

.service-link .arrow {
  transition: transform .2s
}

.service-link:hover .arrow {
  transform: translateX(4px)
}

@media(max-width:900px) {
  .service-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .service-grid {
    grid-template-columns: 1fr
  }
}

/* ================= PROCESS STEPS ================= */
.process {
  padding: 120px 0
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
  position: relative
}

.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: all .3s
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.process-num {
  font-family: "Bricolage Grotesque";
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1.1rem
}

.process-step p {
  font-size: .88rem
}

@media(max-width:900px) {
  .process-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:500px) {
  .process-grid {
    grid-template-columns: 1fr
  }
}

/* ================= TECH STACK ================= */
.tech-stack {
  padding: 120px 0;
  background: linear-gradient(180deg, #F5F3FF 0%, var(--bg) 100%)
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 50px
}

.tech-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  transition: all .25s
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.tech-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 10px;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-family: "Bricolage Grotesque";
  font-weight: 700;
  font-size: 1.2rem
}

.tech-card span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink)
}

@media(max-width:900px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:500px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ================= WHY / STATS ================= */
.why {
  padding: 120px 0
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px
}

.why-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg)
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(79, 70, 229, .15) 0%, transparent 40%, rgba(255, 90, 95, .25) 100%)
}

.why-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 2
}

.why-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .2);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .2)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, .1)
  }
}

.why-badge strong {
  font-size: .85rem;
  color: var(--ink)
}

.why-content h2 {
  margin-bottom: 20px
}

.why-content .lead {
  margin-bottom: 32px;
  font-size: 1.05rem
}

.why-list {
  display: grid;
  gap: 18px
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: 16px;
  transition: all .25s
}

.why-item:hover {
  background: #fff;
  box-shadow: var(--shadow-sm)
}

.why-num {
  font-family: "Bricolage Grotesque";
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.why-item:nth-child(1) .why-num {
  background: linear-gradient(135deg, #4F46E5, #8B5CF6)
}

.why-item:nth-child(2) .why-num {
  background: linear-gradient(135deg, #8B5CF6, #D946EF)
}

.why-item:nth-child(3) .why-num {
  background: linear-gradient(135deg, #FF5A5F, #F59E0B)
}

.why-item:nth-child(4) .why-num {
  background: linear-gradient(135deg, #10B981, #0EA5E9)
}

.why-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px
}

.why-item p {
  font-size: .9rem
}

.stats {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden
}

.stats::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .4), transparent 60%);
  filter: blur(40px)
}

.stats::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 95, .3), transparent 60%);
  filter: blur(40px)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1
}

.stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
  padding: 10px 20px
}

.stat:last-child {
  border-right: none
}

.stat-num {
  font-family: "Bricolage Grotesque";
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, #fff, #C7D2FE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px
}

.stat-label {
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  font-weight: 500
}

@media(max-width:900px) {
  .why {
    padding: 80px 0
  }

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

  .stats {
    padding: 36px 24px
  }

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

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 20px
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0
  }
}

/* ================= PROJECTS ================= */
.projects {
  padding: 120px 0;
  background: #fff
}

.project-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap
}

.project-filters button {
  padding: 10px 20px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: .88rem;
  color: var(--ink-soft);
  transition: all .2s
}

.project-filters button:hover {
  border-color: var(--ink)
}

.project-filters button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

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

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .3s
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25, 1, .5, 1)
}

.project-card:hover img {
  transform: scale(1.08)
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 14, 43, .9) 100%)
}

.project-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: #fff;
  z-index: 2
}

.project-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px
}

.project-info h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 6px
}

.project-info p {
  color: rgba(255, 255, 255, .75);
  font-size: .88rem
}

.project-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: #fff;
  transform: translateY(-10px);
  opacity: 0;
  transition: all .3s
}

.project-card:hover .project-arrow {
  transform: translateY(0);
  opacity: 1
}

.project-card.hidden {
  display: none
}

@media(max-width:900px) {
  .projects {
    padding: 80px 0
  }

  .project-grid {
    grid-template-columns: 1fr
  }
}

/* ================= INDUSTRIES ================= */
.industries {
  padding: 120px 0;
  background: var(--bg)
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px
}

.ind-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all .3s
}

.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.ind-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-hero)
}

.ind-card:nth-child(2) .ind-icon {
  background: linear-gradient(135deg, #10B981, #0EA5E9)
}

.ind-card:nth-child(3) .ind-icon {
  background: linear-gradient(135deg, #FF5A5F, #F59E0B)
}

.ind-card:nth-child(4) .ind-icon {
  background: linear-gradient(135deg, #EC4899, #8B5CF6)
}

.ind-card:nth-child(5) .ind-icon {
  background: linear-gradient(135deg, #F59E0B, #EC4899)
}

.ind-card:nth-child(6) .ind-icon {
  background: linear-gradient(135deg, #0EA5E9, #4F46E5)
}

.ind-card:nth-child(7) .ind-icon {
  background: linear-gradient(135deg, #8B5CF6, #FF5A5F)
}

.ind-card:nth-child(8) .ind-icon {
  background: linear-gradient(135deg, #10B981, #F59E0B)
}

.ind-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px
}

.ind-card p {
  font-size: .85rem
}

@media(max-width:900px) {
  .ind-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* ================= CASE STUDY FEATURE ================= */
.case-study {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #F5F3FF 100%)
}

.case-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: #fff;
  border-radius: 32px;
  padding: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line)
}

.case-visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-lg)
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.case-content .eyebrow {
  margin-bottom: 18px
}

.case-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 18px
}

.case-content p {
  margin-bottom: 24px
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.case-metric strong {
  display: block;
  font-family: "Bricolage Grotesque";
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700
}

.case-metric small {
  font-size: .82rem;
  color: var(--muted)
}

@media(max-width:900px) {
  .case-inner {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px
  }

  .case-metrics {
    grid-template-columns: 1fr 1fr
  }
}

/* ================= PRICING ================= */
.pricing {
  padding: 120px 0
}

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

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all .3s;
  position: relative
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.price-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.03)
}

.price-card.featured h3,
.price-card.featured .price-amount {
  color: #fff
}

.price-card.featured ul li {
  color: rgba(255, 255, 255, .8)
}

.price-card.featured .price-period {
  color: rgba(255, 255, 255, .6)
}

.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 12px;
  background: var(--grad-cta);
  color: #fff;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px
}

.price-card .price-desc {
  font-size: .9rem;
  margin-bottom: 24px;
  color: var(--muted)
}

.price-card.featured .price-desc {
  color: rgba(255, 255, 255, .7)
}

.price-amount {
  font-family: "Bricolage Grotesque";
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1
}

.price-period {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 28px;
  display: block
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin-bottom: 32px
}

.price-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--ink-soft)
}

.price-card ul li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0
}

.price-card.featured ul li::before {
  color: #C4B5FD
}

.price-card .btn {
  width: 100%;
  justify-content: center
}

@media(max-width:900px) {
  .pricing-grid {
    grid-template-columns: 1fr
  }

  .price-card.featured {
    transform: none
  }
}

/* ================= FAQ ================= */
.faq {
  padding: 120px 0;
  background: var(--bg)
}

.faq-grid {
  max-width: 760px;
  margin: 56px auto 0;
  display: grid;
  gap: 14px
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 26px;
  transition: all .25s
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-md)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: "Bricolage Grotesque";
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink)
}

.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s
}

.faq-item.open .faq-q .plus {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease
}

.faq-a p {
  padding-top: 14px;
  font-size: .95rem;
  line-height: 1.7
}

.faq-item.open .faq-a {
  max-height: 300px
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 120px 0;
  background: var(--grad-soft);
  position: relative;
  overflow: hidden
}

.quote-mark {
  position: absolute;
  top: 80px;
  left: 5%;
  font-family: "Bricolage Grotesque";
  font-size: 20rem;
  color: rgba(79, 70, 229, .06);
  line-height: 1;
  font-weight: 700;
  z-index: 0
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
  border: 1px solid rgba(11, 14, 43, .04)
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.t-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 2px
}

.t-quote {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
  line-height: 1.65
}

.t-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line)
}

.t-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover
}

.t-person strong {
  display: block;
  font-size: .95rem;
  color: var(--ink)
}

.t-person small {
  color: var(--muted);
  font-size: .82rem
}

@media(max-width:900px) {
  .testimonials {
    padding: 80px 0
  }

  .testimonial-grid {
    grid-template-columns: 1fr
  }
}

/* ================= CTA ================= */
.cta {
  padding: 60px 0 120px
}

.cta-inner {
  background: var(--ink);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff
}

.cta-inner::before,
.cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none
}

.cta-inner::before {
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, .6), transparent 60%)
}

.cta-inner::after {
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 90, 95, .5), transparent 60%)
}

.cta-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%)
}

.cta-inner>* {
  position: relative;
  z-index: 1
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  max-width: 800px;
  margin: 0 auto 18px
}

.cta-inner p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px
}

.cta-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

@media(max-width:700px) {
  .cta-inner {
    padding: 56px 24px
  }
}

/* ================= CONTACT ================= */
.contact {
  padding: 120px 0;
  background: #fff
}

.contact-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start
}

.contact-info h2 {
  margin-bottom: 20px
}

.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 440px
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-bottom: 40px
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0
}

.contact-item small {
  color: var(--muted);
  font-size: .82rem;
  display: block;
  margin-bottom: 2px
}

.contact-item strong {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600
}

.contact-item a {
  color: var(--ink)
}

.contact-item a:hover {
  color: var(--primary)
}

.social-row {
  display: flex;
  gap: 10px
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: all .25s
}

.social-row a:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-3px)
}

.contact-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--line)
}

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

.form-group {
  margin-bottom: 18px
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .1)
}

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

.contact-form .btn-accent {
  width: 100%;
  justify-content: center;
  margin-top: 8px
}

@media(max-width:900px) {
  .contact {
    padding: 80px 0
  }

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

  .contact-form {
    padding: 28px
  }

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

/* Map section */
.map-section {
  padding: 0 0 120px
}

.map-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21/9;
  position: relative;
  box-shadow: var(--shadow-md)
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}

/* ================= FOOTER ================= */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden
}

.footer::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, .25), transparent 60%);
  filter: blur(60px)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 18px
}

.footer-brand p {
  margin-bottom: 24px;
  max-width: 340px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .6)
}

.footer-col h5 {
  font-family: "Bricolage Grotesque";
  font-size: .95rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600
}

.footer-col ul {
  display: grid;
  gap: 12px
}

.footer-col a {
  font-size: .92rem;
  color: rgba(255, 255, 255, .6);
  transition: color .2s
}

.footer-col a:hover {
  color: #fff
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-bottom: 20px
}

.newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
  color: #fff;
  font-family: inherit;
  font-size: .88rem
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, .4)
}

.newsletter input:focus {
  outline: none;
  border-color: var(--primary)
}

.newsletter button {
  padding: 12px 20px;
  background: var(--grad-cta);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: .88rem
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  position: relative;
  z-index: 1
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5)
}

.footer-bottom a:hover {
  color: #fff
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }
}

@media(max-width:600px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.25, 1, .5, 1), transform .8s cubic-bezier(.25, 1, .5, 1)
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .08s
}

.reveal-delay-2 {
  transition-delay: .16s
}

.reveal-delay-3 {
  transition-delay: .24s
}

::selection {
  background: var(--primary);
  color: #fff
}


/* video settings */

/* HERO VIDEO */
.hero-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

/* Remove dark overlay from video */
.hero-visual .main-img::after{
  display: none;
}

/* Better hero video container */
.hero-visual .main-img{
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  background: #000;
}

/* Mobile optimization */
@media(max-width:900px){
  .hero-visual{
    aspect-ratio: 16/10;
  }

  .hero-video{
    object-fit: cover;
  }
}

