:root {
  --ink: #1f2546;
  --ink-soft: #5c6384;
  --green: #465ed9;
  --green-dark: #2a256d;
  --mint: #a982f2;
  --mint-light: #f0eaff;
  --cream: #fbf4ee;
  --paper: #fffaf5;
  --white: #ffffff;
  --line: #e8e2f2;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", sans-serif;
  --heading: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  background: rgba(252, 251, 255, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: 0.3s ease;
}

.site-header.scrolled {
  border-color: rgba(24, 33, 62, 0.1);
  box-shadow: 0 8px 30px rgba(33, 29, 97, 0.07);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.brand strong {
  color: var(--green);
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  padding: 8px;
  display: flex;
  align-items: end;
  gap: 3px;
  border-radius: 50%;
  background: var(--green);
}

.brand-mark span {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: var(--mint);
}

.brand-mark span:nth-child(1) { height: 7px; }
.brand-mark span:nth-child(2) { height: 13px; }
.brand-mark span:nth-child(3) { height: 18px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: 0.2s ease;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: var(--white);
  background: var(--green);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 30px rgba(52, 72, 181, 0.2);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 19px;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 170px 0 100px;
  overflow: hidden;
  background:
    linear-gradient(rgba(252, 251, 255, 0.72), rgba(252, 251, 255, 0.72)),
    radial-gradient(circle at 15% 20%, #ece8ff 0, transparent 34%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -36%;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(52, 72, 181, 0.1);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--mint);
}

h1,
h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -3px;
}

h1 {
  max-width: 620px;
  font-size: clamp(50px, 5.5vw, 76px);
}

h1 em,
h2 em {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-text {
  max-width: 540px;
  margin: 28px 0 32px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(52, 72, 181, 0.35);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  margin-left: 8px;
  color: var(--green);
}

.trust-line {
  margin-top: 43px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-line p {
  margin: 0;
  color: #737b99;
  font-size: 12px;
  line-height: 1.5;
}

.trust-line strong {
  color: var(--ink);
  font-size: 13px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 35px;
  height: 35px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 8px;
  font-weight: 700;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: #7180b9;
}

.avatar-stack span:last-child {
  background: #a87ed1;
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.visual-card {
  border: 1px solid rgba(52, 72, 181, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 80px rgba(46, 42, 125, 0.14);
}

.main-card {
  position: absolute;
  top: 18px;
  right: 0;
  width: 92%;
  padding: 30px;
  transform: rotate(1deg);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-top div {
  display: flex;
  flex-direction: column;
}

.muted-label,
.card-stats span {
  color: #858ba5;
  font-size: 11px;
}

.card-top strong {
  margin-top: 3px;
  font-family: var(--heading);
  font-size: 18px;
}

.status-dot {
  padding: 7px 11px;
  border-radius: 30px;
  color: var(--green);
  background: var(--mint-light);
  font-size: 10px;
  font-weight: 700;
}

.chart {
  margin: 28px 0 18px;
  padding: 15px 0 0;
  border-top: 1px dashed #e6e5f0;
}

.chart-line svg {
  width: 100%;
  overflow: visible;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-stroke {
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-width: 3;
}

.chart-line circle {
  fill: var(--paper);
  stroke: var(--green);
  stroke-width: 3;
}

.chart-months {
  display: flex;
  justify-content: space-between;
  color: #9b9fb5;
  font-size: 10px;
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #ececf3;
}

.card-stats div {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}

.card-stats div + div {
  padding-left: 25px;
  border-left: 1px solid #ececf3;
}

.card-stats strong {
  margin-top: 3px;
  font-family: var(--heading);
  font-size: 24px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(52, 72, 181, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(46, 42, 125, 0.17);
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 12px;
}

.floating-card small {
  color: #8e93ab;
  font-size: 9px;
}

.deadline-card {
  bottom: 32px;
  left: 0;
  padding: 14px 20px 14px 14px;
}

.icon-box {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint-light);
  font-weight: 800;
}

.support-card {
  right: -25px;
  bottom: 102px;
  padding: 13px 18px;
}

.support-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  top: 128px;
  right: 5%;
  width: 100px;
  height: 100px;
  border: 18px solid rgba(146, 116, 231, 0.1);
}

.hero-orb-two {
  bottom: 66px;
  left: 46%;
  width: 18px;
  height: 18px;
  background: rgba(146, 116, 231, 0.38);
}

.logo-strip {
  padding: 29px 0;
  border-top: 1px solid #e9e8f2;
  border-bottom: 1px solid #e9e8f2;
  background: #f8f7fc;
}

.logo-strip .container {
  display: flex;
  align-items: center;
  gap: 45px;
}

.logo-strip p {
  flex: none;
  margin: 0;
  color: #9499ae;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.client-types {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #626b8b;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
}

.client-types i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 55px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(38px, 4.3vw, 58px);
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 6px;
  color: #69718f;
}

.services {
  background: var(--paper);
}

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

.service-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  z-index: 2;
  box-shadow: 0 20px 50px rgba(46, 42, 125, 0.13);
  transform: translateY(-7px);
}

.service-card.featured {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #a3a7bc;
  font-family: var(--heading);
  font-size: 12px;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.46);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint-light);
}

.service-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3,
.process-step h3 {
  margin: 0 0 13px;
  font-family: var(--heading);
  font-size: 21px;
  letter-spacing: -0.5px;
}

.service-card p {
  min-height: 76px;
  margin: 0 0 28px;
  color: #737a96;
  font-size: 14px;
}

.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card a {
  font-size: 12px;
  font-weight: 700;
}

.featured a {
  color: var(--mint);
}

.about {
  padding: 0;
  color: var(--white);
  background: var(--green-dark);
}

.about-grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.about-visual {
  position: relative;
  min-height: 600px;
}

.photo-placeholder {
  position: absolute;
  top: 0;
  right: 50px;
  bottom: 0;
  left: calc((1180px - 100vw) / 2);
  overflow: hidden;
  background: #c9c7df;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(52, 72, 181, 0.08), rgba(33, 29, 97, 0.45));
}

.desk-scene {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, transparent 0 55%, #8583a8 55% 69%, #535176 69% 71%, #aaa8c7 71%),
    linear-gradient(120deg, #dcdaeb, #aeb4d2);
}

.laptop {
  position: absolute;
  z-index: 2;
  top: 30%;
  left: 38%;
  width: 220px;
  height: 145px;
  padding: 8px;
  border-radius: 8px;
  background: #26275c;
  transform: perspective(500px) rotateY(-8deg);
}

.laptop div {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 15%, rgba(146, 116, 231, .5) 15% 18%, transparent 18%),
    linear-gradient(#f9f8ff 15%, #e8e6f3 15% 18%, #f9f8ff 18%);
}

.laptop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  width: 250px;
  height: 10px;
  border-radius: 0 0 8px 8px;
  background: #deddea;
}

.plant {
  position: absolute;
  z-index: 1;
  top: 21%;
  left: 9%;
  width: 80px;
  height: 170px;
  border-bottom: 70px solid #77749c;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
}

.plant span {
  position: absolute;
  width: 55px;
  height: 95px;
  border-radius: 100% 0 100% 0;
  background: #6366a5;
  transform: rotate(-30deg);
}

.plant span:nth-child(2) {
  left: 30px;
  transform: rotate(35deg) scale(.8);
}

.plant span:nth-child(3) {
  top: 35px;
  left: -12px;
  transform: rotate(-55deg) scale(.7);
}

.coffee {
  position: absolute;
  z-index: 2;
  right: 17%;
  bottom: 23%;
  width: 55px;
  height: 55px;
  border: 9px solid #f0eee6;
  border-radius: 50%;
  background: #493225;
  box-shadow: 10px 1px 0 -2px #f0eee6;
}

.papers {
  position: absolute;
  z-index: 1;
  right: 5%;
  bottom: 10%;
  width: 190px;
  height: 130px;
  background: repeating-linear-gradient(#faf9ff 0 16px, #d8d6e8 17px 18px);
  transform: rotate(-7deg);
  box-shadow: 7px 10px 0 rgba(255,255,255,.55);
}

.experience-badge {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 60px;
  width: 165px;
  padding: 22px;
  color: var(--green-dark);
  background: var(--mint);
}

.experience-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
}

.experience-badge span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.4;
}

.about-copy {
  padding: 100px 0 100px 60px;
}

.eyebrow.light {
  color: var(--mint);
}

.about-copy h2 em {
  color: var(--mint);
}

.about-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.check-list {
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
  font-size: 13px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(146, 116, 231, 0.65);
  border-radius: 50%;
  color: var(--mint);
  font-size: 10px;
}

.button-light {
  color: var(--green-dark);
  border-color: var(--mint);
  background: var(--mint);
}

.button-light:hover {
  color: var(--white);
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.process {
  background: var(--cream);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 15%;
  left: 15%;
  border-top: 1px dashed #b9b6d1;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step > span {
  width: 48px;
  height: 48px;
  margin: 0 auto 27px;
  display: grid;
  place-items: center;
  border: 1px solid #c1bed8;
  border-radius: 50%;
  color: var(--green);
  background: var(--cream);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 800;
}

.process-step p {
  max-width: 290px;
  margin: 0 auto;
  color: #737a96;
  font-size: 14px;
}

.testimonial {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.testimonial::before,
.testimonial::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.testimonial::before {
  top: -220px;
  left: -60px;
}

.testimonial::after {
  right: -60px;
  bottom: -260px;
}

.testimonial-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.quote-mark {
  color: var(--mint);
  font-family: var(--serif);
  font-size: 60px;
  line-height: 0.8;
}

blockquote {
  margin: 22px auto;
  font-family: var(--heading);
  font-size: clamp(25px, 3vw, 39px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -1.5px;
}

blockquote em {
  color: var(--mint);
  font-family: var(--serif);
  font-weight: 400;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 420px;
  margin: 27px 0 35px;
  color: #69718f;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details a,
.contact-details .contact-card {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 700;
}

.contact-details a > span,
.contact-details .contact-card > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint-light);
}

.contact-details div {
  display: flex;
  flex-direction: column;
}

.contact-details small {
  color: #9297ae;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(46, 42, 125, 0.09);
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #dcdded;
  border-radius: 3px;
  outline: none;
  color: var(--ink);
  background: #fdfcff;
  font-size: 13px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(146, 116, 231, 0.18);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: #9499af;
  font-size: 10px;
  text-align: center;
}

.form-note.success {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

footer {
  padding: 50px 0 22px;
  color: rgba(255, 255, 255, 0.64);
  background: #171541;
}

.footer-top {
  padding-bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-light {
  color: var(--white);
}

.brand-light strong {
  color: var(--mint);
}

.footer-top p {
  font-size: 12px;
}

.back-top {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

@media (max-width: 980px) {
  .main-nav {
    gap: 22px;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .support-card {
    right: -5px;
  }

  .about-copy {
    padding-left: 25px;
  }

  .photo-placeholder {
    right: 25px;
  }

  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 600px);
  }

  .nav-wrap {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    padding: 28px 24px 35px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(46, 42, 125, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding: 125px 0 70px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    letter-spacing: -2px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 63px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 425px;
    margin-top: 45px;
  }

  .main-card {
    width: 96%;
    padding: 22px;
  }

  .deadline-card {
    bottom: 10px;
  }

  .support-card {
    right: 0;
    bottom: 75px;
  }

  .logo-strip .container {
    display: block;
  }

  .logo-strip p {
    margin-bottom: 17px;
    text-align: center;
  }

  .client-types {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }

  .client-types i {
    display: none;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 38px;
    display: block;
  }

  .section-heading > p {
    margin-top: 22px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: 350px;
  }

  .process-grid {
    gap: 38px;
  }

  .process-grid::before {
    display: none;
  }

  .about-grid {
    width: 100%;
  }

  .about-visual {
    min-height: 480px;
  }

  .photo-placeholder {
    right: 0;
    left: 0;
  }

  .about-copy {
    width: min(100% - 32px, 600px);
    margin: 0 auto;
    padding: 70px 0;
  }

  .contact-grid {
    gap: 55px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-bottom div {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-visual {
    min-height: 365px;
  }

  .card-top strong {
    font-size: 15px;
  }

  .main-card {
    padding: 18px;
  }

  .chart {
    margin: 14px 0 8px;
  }

  .card-stats strong {
    font-size: 20px;
  }

  .support-card {
    display: none;
  }

  .deadline-card {
    padding: 10px 14px 10px 10px;
  }

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

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

  .experience-badge {
    right: 15px;
    bottom: 25px;
  }
}

/* Calm premium direction */
body {
  background-image: none;
}

.brand {
  letter-spacing: -0.6px;
}

.brand-mark {
  border-radius: 12px;
  transform: none;
}

.brand-mark::after,
.button::before,
.hero::before,
.hero-word,
.ledger-index,
.visual-caption,
.card-ledger-code,
.hero-marquee,
.services::before,
.service-card::after,
.card-tag,
.about::before,
h1::after {
  display: none;
}

.button {
  border-radius: 12px;
  overflow: visible;
}

.hero {
  min-height: 770px;
  padding: 165px 0 95px;
  background:
    radial-gradient(circle at 75% 34%, rgba(146, 116, 231, 0.14), transparent 25%),
    radial-gradient(circle at 15% 18%, rgba(76, 111, 224, 0.09), transparent 28%),
    var(--paper);
}

.hero::after {
  right: -150px;
  bottom: -230px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(52, 72, 181, 0.09);
}

.hero-grid {
  grid-template-columns: 0.93fr 1.07fr;
  gap: 70px;
}

.hero-copy {
  padding-top: 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.8px;
}

h1 {
  font-size: clamp(54px, 5.7vw, 80px);
  line-height: 1.02;
  letter-spacing: -4px;
}

h1 em,
h2 em {
  font-size: 1em;
  letter-spacing: -1.5px;
}

.hero-text {
  max-width: 510px;
  margin-top: 30px;
  padding-left: 0;
  border-left: 0;
}

.trust-symbol {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--green);
  background: var(--mint-light);
  font-size: 15px;
  font-weight: 800;
}

.hero-visual {
  min-height: 475px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-visual::before {
  top: -25px;
  right: -15px;
  width: 390px;
  height: 390px;
  border: 55px solid rgba(146, 116, 231, 0.1);
}

.hero-visual::after {
  right: 65px;
  bottom: 3px;
  width: 90px;
  height: 90px;
  background: rgba(52, 72, 181, 0.08);
}

.main-card {
  top: 22px;
  right: 0;
  z-index: 2;
  width: 92%;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(46, 42, 125, 0.16);
  transform: none;
}

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

.deadline-card {
  bottom: 28px;
  left: 0;
  border-radius: 16px;
  transform: none;
}

.support-card {
  right: -18px;
  bottom: 108px;
  border-radius: 16px;
  transform: none;
}

.logo-strip {
  margin-top: 0;
  padding-top: 29px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  letter-spacing: -3px;
}

.services-grid {
  align-items: stretch;
  gap: 20px;
}

.service-card,
.service-card:nth-child(2),
.service-card:nth-child(3) {
  min-height: 395px;
  margin-top: 0;
  padding: 34px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: none;
}

.service-card {
  border-top: 4px solid var(--mint);
}

.service-card.featured {
  border-top-color: var(--mint);
  background:
    radial-gradient(circle at 100% 100%, rgba(146, 116, 231, 0.22), transparent 38%),
    var(--green);
}

.service-card:nth-child(2) {
  border-top-color: #6680df;
}

.service-card:nth-child(3) {
  border-top-color: #b38be8;
}

.service-icon {
  margin-top: 0;
  margin-bottom: 58px;
  border-radius: 18px;
  transform: none;
}

.service-card h3 {
  max-width: none;
  font-size: 21px;
}

.photo-placeholder {
  clip-path: none;
  border-radius: 0 32px 32px 0;
}

.experience-badge {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(18, 16, 67, 0.2);
  transform: none;
}

.process-step > span,
.process-step:nth-child(2) > span {
  border-radius: 16px;
  transform: none;
}

.testimonial,
.testimonial-inner {
  transform: none;
}

.contact-form {
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(46, 42, 125, 0.1);
}

@media (max-width: 760px) {
  body {
    background-image: none;
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 72px;
    background:
      radial-gradient(circle at 95% 18%, rgba(146, 116, 231, 0.15), transparent 25%),
      var(--paper);
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    font-size: clamp(46px, 13vw, 62px);
    line-height: 1.02;
    letter-spacing: -3px;
  }

  .hero-text {
    margin-top: 28px;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 45px;
  }

  .hero-visual::before {
    width: 300px;
    height: 300px;
    border-width: 42px;
  }

  .main-card {
    top: 18px;
    width: 96%;
    padding: 24px;
  }

  .service-card {
    min-height: 350px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    letter-spacing: -2px;
  }

  .photo-placeholder {
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .hero-actions .button {
    width: 100%;
  }

  .trust-line {
    align-items: center;
  }

  .hero-visual {
    min-height: 360px;
  }

  .main-card {
    right: 0;
    width: 100%;
  }

  .deadline-card {
    left: -2px;
    bottom: 0;
  }
}

/* Final calm theme overrides */
body { background-image: none; }

.brand-mark {
  border-radius: 12px;
  transform: none;
}

.brand-mark::after,
.button::before,
.hero::before,
.main-card::before,
.services::before,
.service-card::after,
.about::before,
h1::after {
  display: none;
}

.button {
  border-radius: 12px;
  overflow: visible;
}

.hero {
  min-height: 770px;
  padding: 165px 0 95px;
  background:
    radial-gradient(circle at 75% 34%, rgba(146, 116, 231, 0.14), transparent 25%),
    radial-gradient(circle at 15% 18%, rgba(76, 111, 224, 0.09), transparent 28%),
    var(--paper);
}

.hero::after {
  right: -150px;
  bottom: -230px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(52, 72, 181, 0.09);
}

.hero-grid {
  grid-template-columns: 0.93fr 1.07fr;
  gap: 70px;
}

.hero-copy { padding-top: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.8px;
}

h1 {
  font-size: clamp(54px, 5.7vw, 80px);
  line-height: 1.02;
  letter-spacing: -4px;
}

h1 em,
h2 em {
  font-size: 1em;
  letter-spacing: -1.5px;
}

.hero-text {
  max-width: 510px;
  margin-top: 30px;
  padding-left: 0;
  border-left: 0;
}

.hero-visual { min-height: 475px; }

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-visual::before {
  top: -25px;
  right: -15px;
  width: 390px;
  height: 390px;
  display: block;
  border: 55px solid rgba(146, 116, 231, 0.1);
}

.hero-visual::after {
  right: 65px;
  bottom: 3px;
  width: 90px;
  height: 90px;
  background: rgba(52, 72, 181, 0.08);
}

.main-card {
  top: 22px;
  right: 0;
  z-index: 2;
  width: 92%;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(46, 42, 125, 0.16);
  transform: none;
}

.deadline-card {
  bottom: 28px;
  left: 0;
  border-radius: 16px;
  transform: none;
}

.support-card {
  right: -18px;
  bottom: 108px;
  border-radius: 16px;
  transform: none;
}

.logo-strip {
  margin-top: 0;
  padding-top: 29px;
}

.services-grid {
  align-items: stretch;
  gap: 20px;
}

.service-card,
.service-card:nth-child(2),
.service-card:nth-child(3) {
  min-height: 395px;
  margin-top: 0;
  padding: 34px;
  border-radius: 24px;
  box-shadow: none;
}

.service-card { border-top: 4px solid var(--mint); }
.service-card:nth-child(2) { border-top-color: #6680df; }
.service-card:nth-child(3) { border-top-color: #b38be8; }

.service-icon {
  margin-top: 0;
  margin-bottom: 58px;
  border-radius: 18px;
  transform: none;
}

.service-card h3 {
  max-width: none;
  font-size: 21px;
}

.photo-placeholder {
  clip-path: none;
  border-radius: 0 32px 32px 0;
}

.experience-badge {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(18, 16, 67, 0.2);
  transform: none;
}

.process-step > span,
.process-step:nth-child(2) > span {
  border-radius: 16px;
  transform: none;
}

.testimonial,
.testimonial-inner { transform: none; }

.contact-form {
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(46, 42, 125, 0.1);
}

@media (max-width: 760px) {
  .hero {
    padding-top: 125px;
    padding-bottom: 72px;
    background:
      radial-gradient(circle at 95% 18%, rgba(146, 116, 231, 0.15), transparent 25%),
      var(--paper);
  }

  h1 {
    font-size: clamp(46px, 13vw, 62px);
    line-height: 1.02;
    letter-spacing: -3px;
  }

  .hero-text { margin-top: 28px; }

  .hero-visual {
    min-height: 420px;
    margin-top: 45px;
  }

  .hero-visual::before {
    width: 300px;
    height: 300px;
    border-width: 42px;
  }

  .main-card {
    top: 18px;
    width: 96%;
    padding: 24px;
  }

  .service-card { min-height: 350px; }
  .photo-placeholder { border-radius: 0; }
}

@media (max-width: 480px) {
  .trust-line { align-items: center; }
  .hero-visual { min-height: 360px; }

  .main-card {
    right: 0;
    width: 100%;
  }

  .deadline-card {
    left: -2px;
    bottom: 0;
  }
}

/* Editorial ledger identity */
body {
  background-image:
    linear-gradient(rgba(52, 72, 181, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 72, 181, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.brand {
  letter-spacing: -1px;
}

.brand-mark {
  position: relative;
  overflow: hidden;
  border-radius: 3px 12px 3px 12px;
  transform: rotate(-5deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1px 7px 1px 7px;
}

.button {
  position: relative;
  border-radius: 0 13px 0 13px;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 24%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-24deg);
  transition: left 0.45s ease;
}

.button:hover::before {
  left: 120%;
}

.hero {
  min-height: 830px;
  padding-top: 160px;
  padding-bottom: 125px;
  background:
    radial-gradient(circle at 76% 28%, rgba(146, 116, 231, 0.16), transparent 24%),
    linear-gradient(115deg, rgba(252, 251, 255, 0.98) 0 57%, rgba(238, 233, 255, 0.78) 57% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 82px;
  bottom: 58px;
  left: calc(50% + 80px);
  width: 1px;
  background: linear-gradient(transparent, rgba(52, 72, 181, 0.24) 15% 85%, transparent);
}

.hero::after {
  right: -7%;
  bottom: -42%;
  width: 720px;
  height: 720px;
  border: 70px solid rgba(52, 72, 181, 0.035);
}

.hero-word {
  position: absolute;
  z-index: 0;
  top: 63px;
  left: 25px;
  color: transparent;
  font-family: var(--heading);
  font-size: clamp(130px, 20vw, 310px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -18px;
  -webkit-text-stroke: 1px rgba(52, 72, 181, 0.075);
  user-select: none;
}

.ledger-index {
  position: absolute;
  z-index: 3;
  top: 145px;
  right: 21px;
  bottom: 110px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
  color: rgba(33, 29, 97, 0.58);
  font-family: var(--heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

.ledger-index i {
  width: 1px;
  flex: 1;
  background: rgba(52, 72, 181, 0.22);
}

.hero-grid {
  grid-template-columns: 0.88fr 1.12fr;
  gap: 74px;
}

.hero-copy {
  padding-top: 30px;
}

.eyebrow {
  font-family: var(--heading);
  font-size: 10px;
  letter-spacing: 2.4px;
}

h1 {
  position: relative;
  font-size: clamp(57px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -5px;
}

h1 em,
h2 em {
  font-size: 1.13em;
  letter-spacing: -2px;
}

h1::after {
  content: "BINE CALCULAT";
  position: absolute;
  right: 6px;
  bottom: -23px;
  padding: 5px 9px;
  color: var(--white);
  background: var(--mint);
  font-family: var(--heading);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.5px;
  transform: rotate(-3deg);
}

.hero-text {
  max-width: 490px;
  margin-top: 39px;
  padding-left: 22px;
  border-left: 2px solid var(--mint);
}

.balance-seal {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background:
    repeating-radial-gradient(circle, transparent 0 5px, rgba(146, 116, 231, 0.11) 6px 7px);
  font-family: var(--serif);
  font-size: 25px;
  transform: rotate(-8deg);
}

.hero-visual {
  min-height: 520px;
}

.visual-caption {
  position: absolute;
  z-index: 5;
  top: 6px;
  left: 1px;
  width: 168px;
  padding: 17px 17px 21px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 9px 9px 0 var(--mint);
  transform: rotate(-3deg);
}

.visual-caption span {
  display: block;
  margin-bottom: 17px;
  color: #b9adf2;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.visual-caption strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.05;
}

.main-card {
  top: 57px;
  right: -5px;
  width: 87%;
  padding: 38px 32px 28px;
  border-radius: 2px 28px 2px 28px;
  box-shadow:
    18px 18px 0 rgba(146, 116, 231, 0.15),
    0 32px 80px rgba(46, 42, 125, 0.18);
  transform: rotate(2.2deg);
}

.main-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(52, 72, 181, 0.1);
  border-radius: 1px 21px 1px 21px;
}

.card-ledger-code {
  position: absolute;
  top: 16px;
  right: 29px;
  color: #a4a7bb;
  font-family: var(--heading);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.deadline-card {
  bottom: 4px;
  left: 22px;
  border-radius: 0 14px 0 14px;
  transform: rotate(-2deg);
}

.support-card {
  right: -18px;
  bottom: 91px;
  border-radius: 14px 0 14px 0;
  transform: rotate(2deg);
}

.hero-marquee {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
  transform: rotate(-1deg) scale(1.02);
}

.hero-marquee div {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 31px;
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  animation: marquee 24s linear infinite;
}

.hero-marquee i {
  color: var(--mint);
  font-size: 15px;
}

@keyframes marquee {
  to { transform: translateX(-38%); }
}

.logo-strip {
  margin-top: -3px;
  padding-top: 37px;
}

.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "03";
  position: absolute;
  top: 15px;
  right: -22px;
  color: rgba(52, 72, 181, 0.045);
  font-family: var(--heading);
  font-size: 330px;
  font-weight: 800;
  line-height: 1;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  letter-spacing: -4px;
}

.services-grid {
  align-items: start;
  gap: 24px;
}

.service-card {
  min-height: 430px;
  padding: 35px;
  overflow: hidden;
  border-radius: 2px 25px 2px 25px;
  box-shadow: 9px 9px 0 rgba(52, 72, 181, 0.055);
}

.service-card:nth-child(2) {
  margin-top: 54px;
}

.service-card:nth-child(3) {
  margin-top: 108px;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 95px;
  height: 95px;
  border: 16px solid var(--mint-light);
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.service-card.featured::after {
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card:hover::after {
  transform: scale(1.25) rotate(25deg);
}

.card-tag {
  position: absolute;
  top: 30px;
  left: 32px;
  padding: 5px 9px;
  color: var(--green);
  background: var(--mint-light);
  font-family: var(--heading);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.featured .card-tag {
  color: var(--green-dark);
  background: var(--mint);
}

.service-icon {
  margin-top: 52px;
  margin-bottom: 48px;
  border-radius: 5px 20px 5px 20px;
  transform: rotate(-4deg);
}

.service-card h3 {
  max-width: 245px;
  font-size: 23px;
}

.about {
  position: relative;
}

.about::before {
  content: "FĂRĂ JARGON";
  position: absolute;
  z-index: 4;
  top: 34px;
  left: 50%;
  padding: 7px 13px;
  color: var(--green-dark);
  background: var(--mint);
  font-family: var(--heading);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  transform: translateX(-50%) rotate(2deg);
}

.photo-placeholder {
  clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 0 100%);
}

.experience-badge {
  border-radius: 0 22px 0 22px;
  box-shadow: -10px 10px 0 var(--green-dark);
  transform: rotate(-2deg);
}

.process-step > span {
  border-radius: 4px 16px 4px 16px;
  font-size: 13px;
  transform: rotate(-5deg);
}

.process-step:nth-child(2) > span {
  transform: rotate(4deg);
}

.testimonial {
  transform: skewY(-1.2deg);
}

.testimonial-inner {
  transform: skewY(1.2deg);
}

.contact-form {
  border-radius: 2px 28px 2px 28px;
  box-shadow:
    14px 14px 0 var(--mint-light),
    0 20px 50px rgba(46, 42, 125, 0.09);
}

@media (max-width: 760px) {
  body {
    background-size: 32px 32px;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 110px;
    background:
      radial-gradient(circle at 90% 15%, rgba(146, 116, 231, 0.17), transparent 28%),
      var(--paper);
  }

  .hero::before,
  .ledger-index {
    display: none;
  }

  .hero-word {
    top: 77px;
    left: -8px;
    font-size: 106px;
    letter-spacing: -9px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(49px, 15vw, 67px);
    line-height: 0.98;
    letter-spacing: -4px;
  }

  h1::after {
    right: 2px;
    bottom: -25px;
  }

  .hero-text {
    margin-top: 45px;
  }

  .hero-visual {
    min-height: 455px;
    margin-top: 65px;
  }

  .visual-caption {
    width: 145px;
    padding: 14px;
  }

  .visual-caption strong {
    font-size: 18px;
  }

  .main-card {
    top: 67px;
    width: 91%;
    padding: 36px 20px 22px;
  }

  .hero-marquee {
    height: 52px;
  }

  .services::before {
    font-size: 190px;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    margin-top: 0;
  }

  .service-card {
    min-height: 375px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    letter-spacing: -2.5px;
  }

  .about::before {
    top: 465px;
  }
}

@media (max-width: 480px) {
  .hero-actions .button {
    width: 100%;
  }

  .trust-line {
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 395px;
  }

  .main-card {
    right: 0;
    width: 95%;
  }

  .visual-caption {
    left: -3px;
  }

  .deadline-card {
    left: 0;
  }
}
