/* =========================================================
   BUTTONS / LINKS
========================================================= */
.hero-btns,
.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 700;
  transition: .3s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: translateX(-120%);
  transition: .7s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  margin: 0 auto;
  background: #0f172a;
  color: white;
  box-shadow:
    0 16px 42px rgba(15, 23, 42, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.btn-primary:hover {
  background: #0f172a;
  transform: translateY(-3px);
  box-shadow:
    0 20px 46px rgba(15, 23, 42, .20),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.view-all {
  color: #111827;
  font-weight: 600;
  transition: .3s ease;
}

.view-all:hover {
  opacity: .6;
  text-decoration: none;
}

.wa-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  padding: 16px 22px;
  border-radius: 999px;
  background: #25D366;
  color: white;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .3);
  transition: .3s;
}

.wa-button:hover {
  transform: translateY(-4px);
}

/* =========================================================
   NAVBAR / HEADER
========================================================= */
.evso-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 9999;
  width: 92%;
  max-width: 1200px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 32px;
  background: rgba(255, 255, 255, .58);
  box-shadow:
    0 24px 80px rgba(15, 23, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .75);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.evso-nav.scrolled {
  top: 12px;
  border-color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .72);
  box-shadow:
    0 22px 70px rgba(15, 23, 42, .10),
    inset 0 1px 0 rgba(255, 255, 255, .85);
}

.evso-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 34px;
}

.evso-nav.scrolled .evso-nav-inner {
  padding: 14px 28px;
}

.logo {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(90deg, #111827, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: .3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, .9), rgba(110, 231, 183, .9));
  transition: .3s;
}

.nav-links a:hover {
  color: #2563eb;
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta,
.mobile-menu-toggle {
  padding: 12px 20px;
  border-radius: 999px;
  background: #111827;
  color: white;
  font-size: 14px;
  font-weight: 700;
  box-shadow:
    0 14px 34px rgba(15, 23, 42, .18),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  transition: .3s;
}

.mobile-menu-toggle {
  display: none;
  border: 0;
  cursor: pointer;
}

.nav-cta:hover,
.mobile-menu-toggle:hover,
.footer-button:hover {
  background: #0f172a;
  transform: translateY(-3px);
  box-shadow:
    0 20px 46px rgba(15, 23, 42, .20),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.mobile-menu-panel {
  display: none;
}

/* =========================================================
   HOMEPAGE HERO
========================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -300px;
  right: -250px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(110, 231, 183, .22) 0%, rgba(96, 165, 250, .12) 35%, transparent 72%);
  filter: blur(60px);
}

.hero::after {
  left: -220px;
  bottom: -320px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(96, 165, 250, .10), transparent 70%);
  filter: blur(60px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: auto;
  padding: 165px 28px 95px;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr .95fr;
  align-items: center;
  gap: 58px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 540px;
  border-radius: 36px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .11);
}

.hero-heading {
  max-width: 610px;
  justify-self: start;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 26px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  color: #0f172a;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .04em;
  box-shadow:
    0 14px 40px rgba(15, 23, 42, .07),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero h1 {
  position: relative;
  max-width: 610px;
  margin: 0;
  color: #111827;
  font-size: clamp(46px, 4.25vw, 66px);
  line-height: .98;
  letter-spacing: -.055em;
  text-shadow: 0 10px 30px rgba(37, 99, 235, .08);
}

.hero h1::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -20px;
  width: 96px;
  height: 6px;
  border-radius: 999px;
  opacity: .7;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
}

.hero h1 span {
  display: block;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--blue), #06b6d4, var(--primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 52px;
  margin-top: 48px;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-mini {
  margin-top: 18px !important;
  color: #64748b !important;
  font-size: 14px !important;
}

/* =========================================================
   HOMEPAGE STATS
========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  min-width: 520px;
  margin-top: 86px;
}

.stat {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  padding: 34px 36px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 30px;
  background: rgba(255, 255, 255, .54);
  box-shadow:
    0 20px 60px rgba(15, 23, 42, .07),
    inset 0 1px 0 rgba(255, 255, 255, .75);
  transform-origin: center bottom;
  transition: transform .45s ease, box-shadow .45s ease, background .45s ease;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: .7;
  background: linear-gradient(180deg, rgba(255, 255, 255, .34), transparent 28%);
}

.stat:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .68);
  box-shadow:
    0 28px 80px rgba(15, 23, 42, .10),
    inset 0 1px 0 rgba(255, 255, 255, .85);
}

.stat h3,
.stat p {
  position: relative;
  z-index: 2;
}
.stat{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.stat h3 {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: .95;
  letter-spacing: -.045em;
}

.stat p {
  margin: 0;
  color: #607086;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -.01em;
}

/* =========================================================
   SERVICES SECTION
========================================================= */
.services-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: -20px !important;
  padding-top: 80px !important;
}

/* Later CSS replaced the original decorative left orb with this flow blend. */
.services-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 240px;
  background:
    linear-gradient(
      to bottom,
      rgba(248, 250, 252, 0),
      rgba(248, 250, 252, .92) 45%,
      rgba(248, 250, 252, 1)
    );
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  right: -240px;
  bottom: -240px;
  z-index: 0;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 231, 183, .10), transparent 72%);
  filter: blur(100px);
  pointer-events: none;
}

.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 70px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .58));
  cursor: pointer;
  box-shadow:
    0 18px 60px rgba(15, 23, 42, .065),
    inset 0 1px 0 rgba(255, 255, 255, .75);
  transform-origin: center bottom;
  transition:
    transform .45s ease,
    box-shadow .45s ease,
    background .45s ease,
    border-color .45s ease;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: .7;
  background: linear-gradient(180deg, rgba(255, 255, 255, .34), transparent 28%);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .30), transparent 48%);
  transition: opacity .45s ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, .86);
  background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .62));
  transform: translateY(-6px);
  box-shadow:
    0 26px 80px rgba(15, 23, 42, .095),
    inset 0 1px 0 rgba(255, 255, 255, .88);
}

.service-card:hover::after {
  opacity: 1;
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  margin-bottom: 34px;
  border-radius: 28px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s ease !important;
  filter: none !important;
} 

.service-card:hover .service-image img {
  transform: scale(1.045);
  filter: none !important;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #6ee7b7);
  color: white;
  font-size: 24px;
  box-shadow: 0 12px 34px rgba(96, 165, 250, .20);
  transition: transform .45s ease, box-shadow .45s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.05) rotate(-3deg);
  box-shadow: 0 16px 40px rgba(110, 231, 183, .20);
}

.service-card h3 {
  margin-bottom: 22px;
  color: #0f172a;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
  transition: opacity .3s ease;
}

.service-card p {
  margin-bottom: 28px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.9;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.service-list li{
  position:relative;
  padding-left:18px;
}

.service-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;

  width:6px;
  height:6px;
  border-radius:50%;

  background:#2563eb;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: gap .35s ease, opacity .35s ease;
}

.service-link:hover {
  gap: 14px;
  opacity: .72;
}

.process-section {
  padding-top: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.process-card {
  padding: 42px 32px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  box-shadow:
    0 14px 50px rgba(15, 23, 42, .06),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  transform-origin: center bottom;
  transition: .35s ease;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: .7;
  background: linear-gradient(180deg, rgba(255, 255, 255, .34), transparent 28%);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 60px rgba(15, 23, 42, .085),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.process-card span,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #6ee7b7);
  color: #fff;
  font-weight: 700;
}

.process-card span {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  font-size: 15px;
}

.process-card h3 {
  margin-bottom: 16px;
  color: #0f172a;
  font-size: 28px;
}

.process-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}

.process-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 84px;
  margin-top: 76px;
}

.process-image {
  position: relative;
  overflow: hidden;
  height: 760px;
  border-radius: 38px;
  box-shadow:
    0 28px 80px rgba(15, 23, 42, .10),
    inset 0 1px 0 rgba(255, 255, 255, .3);
}

.process-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(15, 23, 42, .18), transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(110, 231, 183, .12), transparent 34%);
}

.process-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease !important;
  filter: none !important;
}

.process-image:hover img {
  transform: scale(1.035);
  filter: none !important;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.process-step span {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(96, 165, 250, .18);
}

.process-step h3 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.04em;
}

.process-step p {
  max-width: 420px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   PORTFOLIO SECTION
========================================================= */
.portfolio-section {
  position: relative;
  overflow: hidden;
  margin-top: 20px !important;
  padding-top: 90px !important;
}

.portfolio-section::before,
.portfolio-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.portfolio-section::before {
  top: 80px;
  right: -280px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(96, 165, 250, .09), transparent 72%);
}

.portfolio-section::after {
  left: -260px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(110, 231, 183, .08), transparent 72%);
}

.portfolio-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-top: 72px;
}

.portfolio-grid a,
.project,
.project a {
  color: inherit;
  text-decoration: none;
}

.portfolio-grid a:hover,
.project:hover,
.project a:hover {
  text-decoration: none;
}

.project {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .58));
  cursor: pointer;
  box-shadow:
    0 18px 60px rgba(15, 23, 42, .065),
    inset 0 1px 0 rgba(255, 255, 255, .75);
  transform-origin: center bottom;
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.project::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: .7;
  background: linear-gradient(180deg, rgba(255, 255, 255, .34), transparent 28%);
}

.project-large {
  grid-row: span 2;
}

.project:hover {
  border-color: rgba(255, 255, 255, .86);
  transform: translateY(-6px);
  box-shadow:
    0 28px 84px rgba(15, 23, 42, .10),
    inset 0 1px 0 rgba(255, 255, 255, .88);
}

.project-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .45s ease !important;
  filter: none !important;
}

.project-large .project-image {
  min-height: 1000px;
}

.project-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background:
    linear-gradient(to top, rgba(15, 23, 42, .16), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 42%);
  transition: opacity .45s ease;
}

.project:hover .project-image {
  transform: scale(1.025);
  filter: none !important;
}

.project:hover .project-image::before {
  opacity: 1;
}

.image-one {
  background:
    linear-gradient(to top, rgba(17, 24, 39, .12), transparent),
    url("../img/project-atelier.3.png");
  background-color: #d9d9d9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-two {
  background:
    linear-gradient(to top, rgba(17, 24, 39, .08), transparent),
    url("../img/project-velour.1.jpeg");
  background-color: #f3e7df;
  background-size: 108%;
  background-position: center top;
  background-repeat: no-repeat;
}

.image-three {
  background:
    linear-gradient(to top, rgba(17, 24, 39, .08), transparent),
    url("../img/project-nordform1.jpeg");
  background-color: #e8eef6;
  background-size: 108%;
  background-position: center top;
  background-repeat: no-repeat;
}

.image-medicanna {
  background:
    linear-gradient(to top, rgba(17, 24, 39, .10), transparent),
    url("../img/MOCKUP.png");
  background-color: #dce8dc;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.project-content {
  position: relative;
  z-index: 2;
  padding: 30px 36px 36px;
  background: rgba(255, 255, 255, .72);
  text-decoration: none !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.project-content span {
  color: #667085;
  font-size: 12px;
  letter-spacing: .12em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.project-content h3 {
  margin: 14px 0;
  color: #0f172a;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
  text-decoration: none !important;
}

.project-content p {
  color: #526174;
  line-height: 1.8;
  text-decoration: none !important;
}

/* =========================================================
   CONTACT CTA SECTION
========================================================= */
.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 130px 24px 120px;
  padding-top: 110px !important;
  padding-bottom: 90px !important;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -280px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 231, 183, .13), transparent 72%);
  filter: blur(110px);
  pointer-events: none;
}

.contact-cta-inner {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin: auto;
  padding: 92px 78px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(110, 231, 183, .18), transparent 38%),
    radial-gradient(circle at bottom left, rgba(96, 165, 250, .14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .66));
  box-shadow:
    0 30px 100px rgba(15, 23, 42, .10),
    inset 0 1px 0 rgba(255, 255, 255, .85);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.contact-cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .28), transparent 46%);
}

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

.cta-label {
  display: inline-block;
  margin-bottom: 24px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-cta h2 {
  max-width: 820px;
  margin: 0 0 32px;
  color: #0f172a;
  font-size: clamp(42px, 4.6vw, 70px);
  line-height: .96;
  letter-spacing: -.058em;
}

.contact-cta p {
  max-width: 700px;
  margin: 0;
  color: #5f6f84;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -.01em;
}

.cta-actions {
  display: flex;
  margin-top: 44px;
}

.contact-cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  min-height: 320px;
  text-align: left;
}

.contact-cta-box h3 {
  color: #0f172a;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.contact-cta-box p {
  max-width: 500px;
  color: #5f6f84;
}

/* =========================================================
   FOOTER — PREMIUM STUDIO
========================================================= */

.evso-footer{
  position:relative;
  overflow:hidden;
  margin-top:120px;
  padding:90px 8% 42px;
  border-top:1px solid rgba(15,23,42,.06);
  background:
    radial-gradient(circle at top right, rgba(110,231,183,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,.08));
}

.evso-footer::before{
  content:"";
  position:absolute;
  left:-260px;
  bottom:-320px;
  width:680px;
  height:680px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(96,165,250,.10), transparent 72%);
  filter:blur(90px);
  pointer-events:none;
}

.footer-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.6fr .8fr .9fr;
  gap:80px;
  max-width:1200px;
  margin:auto;
}

.footer-logo img{
  display:block;
  width:135px;
  height:auto;
}

.footer-brand p{
  max-width:430px;
  margin-top:28px;
  color:#64748b;
  font-size:16px;
  line-height:1.85;
}

.footer-links,
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-links h4,
.footer-contact h4{
  margin-bottom:14px;
  color:#0f172a;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.footer-links a,
.footer-contact a,
.footer-socials a{
  color:#64748b;
  font-size:15px;
  text-decoration:none;
  transition:.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-socials a:hover{
  color:#2563eb;
  transform:translateX(3px);
}

.footer-socials{
  display:flex;
  gap:20px;
  margin-top:18px;
}

.footer-bottom{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:70px auto 0;
  padding-top:26px;
  border-top:1px solid rgba(15,23,42,.07);
  color:#94a3b8;
  font-size:13px;
}/* =========================================================
   ANIMATIONS / EFFECTS
========================================================= */
.cursor-glow {
  position: fixed;
  z-index: 1;
  display: none !important;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 231, 183, .45), transparent 65%);
  opacity: .35;
  pointer-events: none;
  filter: blur(40px);
  transform: translate(-50%, -50%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary2), var(--blue));
}

.reveal {
  opacity: 0;
  filter: none !important;
  transform: translateY(24px) !important;
  transition:
    opacity .6s ease,
    transform .6s ease !important;
}

.reveal.active {
  opacity: 1;
  filter: none !important;
  transform: translateY(0) !important;
}

.hero-tag,
.hero h1,
.hero p,
.hero-mini,
.hero-btns,
.stats,
.section-title,
.section-text,
.service-card,
.project {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s ease forwards;
}

.hero h1 {
  animation-delay: .1s;
}

.hero p {
  animation-delay: .2s;
}

.hero-mini {
  animation-delay: .3s;
}

.hero-btns {
  animation-delay: .4s;
}

.stats {
  animation-delay: .5s;
}

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

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(40px);
  }
}

@keyframes floatGlow2 {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-40px);
  }
}

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

  50% {
    transform: translate(20px, 40px);
  }
}

/* Final desktop typography polish from the original cascade. */
.hero h1,
.section-title,
.portfolio-title,
.contact-cta h2 {
  font-weight: 700;
  letter-spacing: -.065em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.section-title {
  max-width: 900px;
}